/* header start */
.nh-header {
  background-color: var(--main-color);
  z-index: 1000;
  position: sticky;
  top: 0;
}

.nh-header-wrapper {
}

.nh-logo {
  display: flex;
  align-items: center;
}

.nh-logo-img {
  width: 100%;
  height: auto;
  max-width: 110px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.nh-logo-text {
  margin-left: 10px;
  color: #fff;
}

.nh-logo-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: bold;
  margin: 0;
}

.nh-logo-subtitle {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  margin: 0;
}

.nh-nav {
}

.nh-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nh-nav-list li {
  margin: 0;
}

.nh-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: color 0.3s ease;
}

.nh-nav-link:hover {
  color: #cccccc;
}

.nh-search-btn:hover {
  color: #cccccc;
}
.menu_a_level_1 {
  color: var(--background-color);
  font-family: lato-b;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 0.0163rem + 1.0985vw, 0.95rem);
  display: inline-flex;
  padding: 10px 15px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.nh-search-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--background-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  width: 35px;
  height: 35px;
  background: transparent;
  color: var(--background-color);
}
.menu_li_level_1 {
  position: relative;
}
.menu_li_level_1:hover .menu_a_level_1 {
  color: var(--second-main-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.menu_li_level_1.active .menu_a_level_1 {
  color: var(--second-main-color);
}
.hvr-underline-from-left::before {
  height: 1px;
  background-color: var(--second-main-color);
}

/* sub menu start */
.sub-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: max-content;
  border: 1px solid var(--text-color);
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--main-color);
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  transition: all 0.5s ease !important;
  -webkit-transition: all 0.5s ease !important;
  -moz-transition: all 0.5s ease !important;
  -ms-transition: all 0.5s ease !important;
  -o-transition: all 0.5s ease !important;
  opacity: 0;
  visibility: hidden;
  overflow: visible;
  min-width: 220px;
  filter: blur(5px);
  -webkit-filter: blur(5px);
}
.sub-menu::after {
  position: absolute;
  top: -10px;
  left: 15%;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 12.5px 10px 12.5px;
  border-color: transparent transparent var(--main-color) transparent;
  transform: rotate(0deg);
  display: none;
}
.menu_li_level_1:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transition: all 0.5s ease !important;
  -webkit-transition: all 0.5s ease !important;
  -moz-transition: all 0.5s ease !important;
  -ms-transition: all 0.5s ease !important;
  -o-transition: all 0.5s ease !important;
  filter: blur(0px);
  -webkit-filter: blur(0px);
}
.menu_a_level_1 i {
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px);
}
.menu_a_level_2 {
  display: flex;
  padding: 8px 0px;
  font-family: var(--title-font);
  font-size: clamp(0.8rem, -0.1179rem + 1.4328vw, 1.1rem);
  color: var(--background-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.menu_a_level_2:hover {
  color: #e2dad6;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.menu_li_level_2:last-of-type .menu_a_level_2 {
  border-bottom: none;
}
/* menu end */
.tanaso-header.active {
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px,
    rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}
.tanaso-header.active .tanaso-header-custom-logo img {
  max-width: 90px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.menu_ul_level_3 {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu_a_level_3 {
  color: var(--background-color);
  opacity: 0.7;
  display: flex;
  padding: 3px 10px;
  padding-left: 20px;
  transition: color 0.3 ease;
  -webkit-transition: color 0.3 ease;
  -moz-transition: color 0.3 ease;
  -ms-transition: color 0.3 ease;
  -o-transition: color 0.3 ease;
}
.dropdown_cap_2 .menu_a_level_2 {
  border-bottom: 1px solid #7fa1c3 !important;
}
.menu_a_level_3:hover {
  color: #e2dad6;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
/* sub menu end */
.nh-header.active {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.nh-header.active .nh-logo-img {
  max-width: 60px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.index .nh-header .menu_li_level_1 {
  opacity: 0;
}
/* header end */

/* slider start */
.hq-swiper-slider-item-image {
  overflow: hidden;
}
.hq-swiper-slider-item-image a,
.hq-swiper-slider-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* slider end */

/* menu mobile start */
.hq-menu-mobile {
  position: sticky;
  width: 100%;
  top: 0;
  height: auto;
  z-index: 1000;
  background: var(--main-color);
}

.logo-header-img-mobile {
  width: 60px;
  height: auto;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.menu-mobile-language-box .dropdown-toggle::after {
  display: none;
}
.menu-mobile-language-box .dropdown-menu {
  min-width: 150px;
  /* background: var(--background-color); */
  box-shadow: none !important;
  border: none !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.menu-mobile-language-box .dropdown-item {
  color: var(--text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: var(--normal-font);
}
.menu-mobile-language-box .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.menu-mobile-language-box .dropdown-menu li:first-of-type .dropdown-item:hover {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.menu-mobile-language-box .dropdown-menu li:last-of-type .dropdown-item:hover {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
/* bar start */

.burger {
  position: relative;
  width: 35px;
  height: 23px;
  background: transparent;
  cursor: pointer;
  display: block;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--background-color);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 25px;
  left: 5px;
}

.burger input.toggle-open ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input.toggle-open ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input.toggle-open ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 25px;
  left: 5px;
}
/* bar end */

.hc-nav-trigger.hc-nav-1 {
  opacity: 0;
}
.hc-offcanvas-nav h2 {
  background-color: var(--main-color) !important;
}
.hq-menu-mobile {
  transition: all 0.6s ease-in-out;
}

.hq-menu-mobile.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.hq-menu-mobile.active {
  transform: translateY(0);
  opacity: 1;
}
.menu-mobile-language-box i {
  color: var(--background-color);
}
.hq-menu-mobile.active {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.hq-menu-mobile.active .logo-header-img-mobile {
  width: 40px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
/* menu mobile end */

/* TRANG CHỦ START */

/* về chúng tôi start */
.nh-ve-chung-toi-section {
  padding: 40px 0;
}

.nh-title {
  font-size: clamp(1.35rem, 1.0885rem + 1.3077vw, 2.2rem);
  color: var(--second-text-color);
  font-family: lato-black;
  text-transform: uppercase;
}

.nh-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-color);
}

.nh-list {
  list-style: none;
  padding: 0;
}

.nh-list li {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.nh-list li i {
  color: #e50000;
  margin-right: 10px;
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
}

.btn-nh {
  background-color: var(--second-text-color);
  color: var(--background-color);
  border: none;
  padding: 15px 30px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-family: var(--title-font);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.625rem rgba(231, 30, 40, 0.4),
    0 0.0625rem 0.125rem rgba(231, 30, 40, 0.5);
}

.btn-nh:hover {
  background-color: var(--main-color);
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  box-shadow: 0 0.125rem 0.625rem rgba(54, 54, 56, 0.4),
    0 0.0625rem 0.125rem rgba(54, 54, 56, 0.5);
}

.nh-experience-box {
  position: relative;
}

.nh-experience-overlay {
  position: absolute;
  top: 10px;
  left: -5%;
  background-color: var(--second-text-color);
  color: #ffffff;
  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.nh-hinh-phu-ve-chung-toi {
  position: absolute;
  bottom: -10%;
  left: -5%;
  z-index: 3;
  width: 70%;
}
.nh-experience-box-main-image {
  overflow: hidden;
  clip-path: inset(100% 0% 0% 0%);
}
.nh-experience-box-main-image a,
.nh-experience-box-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nh-experience-content-icon-box {
  width: 55px;
  height: 55px;
  background-color: var(--background-color);
  overflow: hidden;
}
.nh-experience-content-icon-box img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  pointer-events: none;
}
.nh-experience-content-des {
  font-family: lato-b;
  text-transform: uppercase;
  font-size: clamp(0.77rem, 0.73rem + 0.2vw, 0.9rem);
}
.nh-experience-number {
  font-size: clamp(1.1rem, 0.8231rem + 1.3846vw, 2rem);
}
.nh-hinh-phu-ve-chung-toi-image {
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  width: 100%;
  max-width: 400px;
  border: 5px solid var(--background-color);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.nh-hinh-phu-ve-chung-toi-image a,
.nh-hinh-phu-ve-chung-toi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nh-line-ngang {
  width: 110px;
  height: auto;
}
/* về chúng tôi end */

/* cam kết start */
.nh-cam-ket-section {
  padding: 40px 0;
}

.nh-feature-box {
  background-color: var(--background-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nh-feature-box:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.icon-cam-ket {
  height: 73px;
  object-fit: contain;
}
.nh-feature-title {
  font-size: clamp(1.1rem, 1.0385rem + 0.3077vw, 1.3rem);
  color: var(--text-color);
  font-family: lato-b;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.nh-feature-desc {
  font-size: clamp(0.95rem, 0.9346rem + 0.0769vw, 1rem);
}

.nh-video-box {
  position: relative;
  text-align: center;
}

.nh-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(229, 0, 0, 0.8);
  color: #ffffff;
  font-size: 2rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.nh-play-btn:hover {
  background-color: #b30000;
}
.nh-video-box-image {
  overflow: hidden;
  min-height: 100%;
  --bs-aspect-ratio: 120%;
}
.nh-video-box-image a,
.nh-video-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nh-video-box-play-video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 3;
}
.nh-video-box-play-video {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid var(--second-main-color);
  color: var(--second-main-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.nh-video-box-play-video:hover {
  background-color: var(--second-main-color);
  color: var(--text-color);
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
/* cam kết end */

/* sơn trên bề mặt kim loại start */
.nh-son-tren-be-mat-image {
  overflow: hidden;
  min-height: 100%;
}
.nh-son-tren-be-mat-image a,
.nh-son-tren-be-mat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nh-son-tren-be-mat-image img {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.nh-son-tren-be-mat-image:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.icon-play-youtube-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.icon-play-youtube-img:hover {
  filter: grayscale(60%);
  -webkit-filter: grayscale(60%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.nh-son-tren-be-mat-play-box {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

/* sơn trên bề mặt kim loại end */

/* quy trình thực hiện start */
.nh-quy-trinh-thuc-hien-item-icon img {
  height: 66px;
  object-fit: contain;
}
.nh-quy-trinh-thuc-hien-item-text {
  font-family: var(--title-font);
  color: var(--second-text-color);
  font-size: clamp(0.95rem, 0.9038rem + 0.2308vw, 1.1rem);
}
.nh-quy-trinh-thuc-hien-item {
  position: relative;
}
.nh-quy-trinh-box-so {
  position: absolute;
  width: 100px;
  height: 100px;
  left: -50px;
  color: var(--second-text-color);
  font-family: lato-black;
  font-size: 2.2rem;
}
/* .nh-quy-trinh-box-so::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: yellow;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
} */
.nh-quy-trinh-box-so::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 4px;
  height: calc(100% + 80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background-image: url("../../templates/images/line-doc.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  clip-path: var(--bg-clip-path);
}
.nh-quy-trinh-box-so-white-bg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--background-color);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.nh-quy-trinh-box-so::after {
  position: absolute;
  content: "";
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-image: conic-gradient(
    var(--second-text-color),
    var(--second-text-color) var(--loading-progress),
    transparent var(--loading-progress)
  );
}
.nh-quy-trinh-box-so-box {
  position: relative;
  z-index: 5;
}
.nh-quy-trinh-thuc-hien-content-row {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.so-quy-trinh {
  display: inline-flex;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
}
/* quy trình thực hiện end */

/* đăng ký tư vấn start */
.nh-dang-ky-tu-van-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.nh-dang-ky-form {
}
.nh-dang-ky-title-bg {
  background-color: var(--second-text-color);
}
.nh-dang-ky-title {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  background-color: var(--second-text-color);
  color: var(--background-color);
  text-transform: uppercase;
  font-family: lato-black;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid var(--background-color);
}
.nh-dang-ky-form-box {
  background-color: var(--background-color);
  box-shadow: rgba(0, 0, 0, 0.18) 0px 4px 4px;
}
.nh-input {
  border: none;
  padding: 10px 15px;
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  resize: none;
}

.nh-input:focus {
  outline: none;
  box-shadow: none;
}

.nh-btn-submit {
  background-color: var(--second-text-color);
  color: var(--background-color);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-family: var(--title-font);
  border: none;
  border-radius: 4px;
  padding: 10px 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.nh-btn-submit:hover {
  background-color: #b30000;
  color: #ffffff;
}

.nh-stat-box {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.nh-stat-box:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.nh-stat-value {
  font-size: clamp(1.5rem, 1.1923rem + 1.5385vw, 2.5rem);
  color: var(--text-color);
  font-family: lato-black;
}

.nh-stat-desc {
  font-size: clamp(0.9rem, 0.8077rem + 0.4615vw, 1.2rem);
  margin: 0;
}
.anh-bg-tu-van {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.8;
}
.nh-dang-ky-tu-van-section .container {
  position: relative;
  z-index: 5;
}
.nh-dang-ky-tu-van-section-white-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.6);
}
.nh-title-dang-ky-tu-van {
  color: var(--text-color);
  font-family: lato-black;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
}
.nh-description,
.nh-description-tuvan {
  color: var(--text-color);
  font-size: 1rem;
}
.nh-description a,
.nh-description-tuvan a {
  color: var(--second-text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.nh-description a:hover,
.nh-description-tuvan a:hover {
  color: var(--text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
/* đăng ký tư vấn end */

/* tin tức nổi bật start */
.nh-tin-noi-bat-section {
  padding: 40px 0;
}

.nh-card {
  border: 1px solid #dddddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nh-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nh-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.nh-card-body {
}

.nh-card-title {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-family: lato-b;
  color: var(--text-color);
}

.nh-card-desc {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #666666;
  margin-bottom: 15px;
}

.nh-card-link {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #e50000;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.nh-card-link:hover {
  color: #b30000;
}

.nh-card-link i {
  font-size: 0.9rem;
}

.nh-card-new-image {
  overflow: hidden;
}
.nh-card-new-image a,
.nh-card-new-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.nh-card-new-image:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
/* tin tức nổi bật end */

/* đối tác start */
.nh-doi-tac-item-image {
  overflow: hidden;
}
.nh-doi-tac-item-image a,
.nh-doi-tac-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nh-doi-tac-item {
  background-color: var(--background-color);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
/* đối tác end */

/* TRANG CHỦ END */

/* footer start */
.nh-footer {
  background-color: var(--main-color);
  color: var(--background-color);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.nh-footer-title {
  font-family: lato-b;
  color: var(--background-color);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.nh-footer-text {
  margin: 5px 0;
  line-height: 1.6;
  color: var(--background-color);
}

.nh-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nh-footer-list li {
  margin-bottom: 10px;
}

.nh-footer-list a {
  text-decoration: none;
  color: var(--background-color);
  transition: color 0.3s ease;
}

.nh-footer-list a:hover {
  color: #ffffff;
}

.nh-footer-bottom {
  background-color: #f5c100;
  color: var(--text-color);
}

.nh-footer-social a {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.nh-footer-social a:hover {
  color: #e50000;
}

.nh-footer-copy {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  text-align: center;
  color: var(--text-color);
  font-family: var(--title-font);
}
.nh-footer-copy a {
  color: var(--text-color);
}
.nh-footer-copy a.hvr-underline-from-left::before {
  background-color: var(--text-color);
}
.nh-footer-list .hvr-underline-from-left::before {
  background-color: var(--background-color);
}
.nh-footer-social img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nh-footer-text a {
  color: var(--background-color);
  text-decoration: underline;
}
/* footer end */

/* banenr start */
.banner-tin-tuc-image {
  overflow: hidden;
  max-height: 320px;
}
.banner-tin-tuc-image a,
.banner-tin-tuc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* banner end */

/* trang cố định start */
.nh-page-co-dinh-section {
  background-color: #f8f9fa; /* Màu nền nhẹ */
}

.nh-image-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.nh-image {
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.nh-image:hover {
  transform: scale(1.1); /* Phóng to nhẹ khi hover */
}

.nh-content-wrapper {
  background-color: var(--main-color); /* Màu nền đậm */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nh-content-title {
  font-size: clamp(1.5rem, 2vw, 2rem); /* Kích thước tiêu đề linh hoạt */
  font-family: lato-black;
  color: var(--background-color);
  text-transform: uppercase;
}

.nh-content-text {
  font-size: 1rem; /* Kích thước nội dung linh hoạt */
  color: var(--background-color);
  line-height: 1.6;
}
.nh-content-text a {
  color: var(--second-text-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.nh-image-wrapper {
  overflow: hidden;
}
.nh-image-wrapper a,
.nh-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nh-page-co-dinh-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.nh-page-co-dinh-uu-diem-subitem-image {
  overflow: hidden;
}
.nh-page-co-dinh-uu-diem-subitem-image a,
.nh-page-co-dinh-uu-diem-subitem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nh-page-co-dinh-uu-diem-item-col-left {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.nh-page-co-dinh-uu-diem-subitem {
  background-color: var(--background-color);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.nh-page-co-dinh-uu-diem-subitem-view-more {
  color: var(--text-color);
  font-size: 1.5rem;
}
.nh-page-co-dinh-uu-diem-subitem-name {
  font-family: lato-b;
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
  color: var(--text-color);
}
.nh-page-co-dinh-uu-diem-subitem-des {
  font-size: clamp(0.92rem, 0.8954rem + 0.1231vw, 1rem);
}
.nh-video-box-image-co-dinh {
  overflow: hidden;
}
.nh-video-box-image-co-dinh a,
.nh-video-box-image-co-dinh img,
.nh-video-box-image-co-dinh video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nh-page-co-dinh-video .nh-video-box-play-video {
  border-color: var(--background-color);
  color: var(--background-color);
}
.nh-page-co-dinh-video .nh-video-box-play-video:hover {
  background-color: var(--background-color);
  color: var(--text-color);
}
/* trang cố định end */

/* trang dịch vụ start */
.nh-dich-vu-item-image {
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.nh-dich-vu-item-image a,
.nh-dich-vu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.nh-dich-vu-item-image:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.nh-dich-vu-item-name a {
  color: var(--text-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  font-family: lato-b;
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
}
.nh-dich-vu-item-name a:hover {
  color: var(--second-text-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.nh-dich-vu-item-line {
  width: 100%;
  height: 1px;
  background-color: #cccccc;
}
.page-item.active .page-link {
  background-color: var(--second-text-color) !important;
  border-color: var(--second-text-color) !important;
}
.nh-dich-vu-item-image-icon-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: rgba(255, 234, 9, 0.7);
}
.nh-dich-vu-item-image-icon-icon img {
  width: 60%;
  height: auto;
}
.nh-dich-vu-item-image-icon-box {
  position: absolute;
  z-index: 35;
  bottom: -20px;
  right: 20px;
  pointer-events: none;
}
/* trang dịch vụ end */


/* trang tin tức start */
.nh-card-new-image-2 {
  overflow: hidden;
}
.nh-card-new-image-2 a, .nh-card-new-image-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.nh-card-new-image-2:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.nh-card-body-2 {
  background-color: transparent;
  position: relative;
  z-index: 5;
  margin-top: -30px;
}
.nh-card-body-2-name-date {
  background-color: var(--background-color);
}
.nh-card-title-date {
  display: inline-flex;
  width: max-content;
  border-bottom: 1px dashed var(--second-text-color);
}
.nh-card-body-2-des-view-more {
  background-color: var(--background-color);
}
.nh-card-2 .nh-card-title {
  font-size: clamp(0.85rem, 0.7423rem + 0.5385vw, 1.2rem);
}
.nh-card-2 .nh-card-title-date, .nh-card-2 .nh-card-desc {
  font-size: clamp(0.8rem, 0.7385rem + 0.3077vw, 1rem);
}
.nh-news-section-page-content-item-title {
  font-family: lato-b;
  font-size: clamp(1.1rem, 1.0692rem + 0.1538vw, 1.2rem);
  color: var(--text-color);
}
.nh-news-section-page-content-list-subitem-image {
  overflow: hidden;
}
.nh-news-section-page-content-list-subitem-image a, .nh-news-section-page-content-list-subitem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.nh-news-section-page-content-list-subitem-name {
  font-family: lato-b;
  color: var(--text-color);
  font-size: clamp(0.85rem, 0.8346rem + 0.0769vw, 0.9rem);
  transition: color .3s ease;
  -webkit-transition: color .3s ease;
  -moz-transition: color .3s ease;
  -ms-transition: color .3s ease;
  -o-transition: color .3s ease;
}
.nh-news-section-page-content-list-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.nh-news-section-page-content-item-content-list a:last-of-type .nh-news-section-page-content-list-item {
  border-bottom: none;
}
.nh-news-section-page-content-list-item:hover .nh-news-section-page-content-list-subitem-image img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.nh-news-section-page-content-list-item:hover .nh-news-section-page-content-list-subitem-name {
  color: var(--second-text-color);
  transition: color .3s ease;
  -webkit-transition: color .3s ease;
  -moz-transition: color .3s ease;
  -ms-transition: color .3s ease;
  -o-transition: color .3s ease;
}
.nh-news-section-page {
  overflow: visible;
}
.nh-new-section-tin-gan-day-box {
  position: sticky;
  top: 100px;
}
.nh-lien-he-title-text {
  color: var(--second-text-color);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  font-family: lato-black;
}
.nh-lien-he-title img {
  max-width: 250px;
}
.nh-lien-he-section-content-item-title {
  font-size: clamp(1rem, 0.9077rem + 0.4615vw, 1.3rem);
  color: var(--text-color);
  text-transform: uppercase;
  font-family: lato-black;
}
.nh-lien-he-section-content-item-des {
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
}
.nh-lien-he-section-content-item-form {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.nh-lien-he-section-content-item-map-box {
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.nh-lien-he-section-content-item-map-box iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* trang tin tức end */

/* trang sản phẩm start */
.nh-product-item {
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.nh-product-item:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.nh-product-item-image {
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.nh-product-item-image a, .nh-product-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.nh-product-item:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.nh-product-item:hover .nh-product-item-name {
  color: var(--second-text-color);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.nh-product-item-name {
  color: var(--text-color);
  font-family: lato-b;
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.nh-product-item-price {
  color: var(--second-text-color);
  font-size: clamp(0.85rem, 0.8038rem + 0.2308vw, 1rem);
}
.nh-san-pham-danh-muc-san-pham-title {
  color: var(--second-text-color);
  font-family: lato-black;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 1.0385rem + 0.3077vw, 1.3rem);
}
.nh-san-pham-danh-muc-san-pham-a {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  color: var(--text-color);
  font-family: var(--title-font);
}
.nh-san-pham-danh-muc-san-pham-li:last-of-type .nh-san-pham-danh-muc-san-pham-a {
  border-bottom: none;
}
.nh-san-pham-danh-muc-san-pham-a:hover {
  color: var(--second-text-color);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.nh-san-pham-danh-muc-san-pham-a span {
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.nh-san-pham-danh-muc-san-pham-a:hover span {
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.nh-san-pham-danh-muc-san-pham-box {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}
.nh-san-pham-lien-quan-title {
  color: var(--second-text-color);
  font-family: lato-black;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 1.0385rem + 0.3077vw, 1.3rem);
}
.nh-san-pham-lien-quan-box {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.nh-news-section-page-content-list-subitem-price {
  color: var(--second-text-color);
}
.nh-san-pham-lien-quan-box .nh-news-section-page-content-list-item {
  border-bottom: none;
}
/* trang sản phẩm end */


/* trang sản phẩm chi tiết start */

.fbn-product-image-section {
  text-align: center;
}
.fbn-product-main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.fbn-product-thumbnail-wrapper {
  align-items: center;
}
.fbn-product-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.fbn-product-thumbnails img:hover {
  transform: scale(1.1);
}
.fbn-thumbnail-prev,
.fbn-thumbnail-next {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #6c757d;
}
.fbn-product-details-section {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.fbn-product-title {
  font-family: var(--title-font);
  /* font-weight: bold; */
  margin-bottom: 1rem;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 10px;
  font-size: clamp(1.6rem, 1.3846rem + 1.0769vw, 2.3rem);
}
.fbn-product-rating i {
  background: linear-gradient(to bottom, #cc9f3c, #ffdb64, #cc9f3c);
  background-clip: text;
  color: transparent;
}
.fbn-product-price {
  color: var(--second-text-color);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: bold;
}
.fbn-product-sold {
  font-size: clamp(0.875rem, 1.25vw, 1rem);
  color: #6c757d;
}
.fbn-product-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}
.fbn-product-quantity-wrapper button {
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
}
.fbn-quantity-input {
  width: 60px;
  text-align: center;
}
.fbn-add-to-cart {
  background-color: var(--second-text-color);
  border-color: var(--second-text-color);
  color: var(--background-color);
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  font-family: lato-b;
}
.fbn-add-to-cart:hover {
  background-color: var(--main-color);
  transform: translateY(-3px);
}
.fbn-product-quantity-wrapper .input-group {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: max-content;
}
.fbn-quantity-input {
  border: none;
}
.btn-outline-secondary {
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
  background-color: #e9e9e9;
  border-color: #e9e9e9;
  color: var(--text-color);
}
.fbn-san-pham-detail-image {
  overflow: hidden;
}
.fbn-san-pham-detail-image a,
.fbn-san-pham-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-detail-thumb-image {
  overflow: hidden;
}
.sp-detail-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* nội dung chi tiết */
.fbn-san-pham-chi-tiet-title {
  border-bottom: 2px solid var(--main-color);
}
.fbn-san-pham-chi-tiet-title h3 {
  background-color: var(--main-color);
  color: var(--background-color);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  border-top-left-radius: 5px;
  border-top-right-radius: 25px;
  padding: 8px 20px;
  padding-right: 50px;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
  font-family: lato-b;
  text-transform: uppercase;
  transform: translateY(5px);
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
}
.fbn-san-pham-chi-tiet-des {
  padding: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  border-bottom: 8px solid #eae9e9;
  background-color: #f8f8f8;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.fbn-san-pham-chi-tiet-des::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #f8f8f8, transparent);
  z-index: 2;
  pointer-events: none;
}
.fbn-san-pham-chi-tiet-des.collapsehaha::after {
  display: none;
}
.fbn-san-pham-chi-tiet-xem-them {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 3;
}
.fbn-xem-them-btn {
  min-width: 150px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background-color: var(--main-color);
  border: none;
  color: var(--background-color);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.fbn-xem-them-btn:hover {
  background-color: #4a3001;
}
.sp-tt-text-right {
  text-align: right;
}
.swiper-button-next-fbn {
  position: absolute;
  top: 50%;
  right: -20px;
  z-index: 3;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.swiper-button-next-fbn img {
  width: 17px;
  height: auto;
  transform: translateX(3px);
  -webkit-transform: translateX(3px);
  -moz-transform: translateX(3px);
  -ms-transform: translateX(3px);
  -o-transform: translateX(3px);
}
.swiper-button-next-fbn:hover {
  background-color: var(--text-color);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.swiper-button-prev-fbn {
  position: absolute;
  top: 50%;
  left: -20px;
  z-index: 3;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.swiper-button-prev-fbn img {
  width: 17px;
  height: auto;
  transform: translateX(-3px);
  -webkit-transform: translateX(-3px);
  -moz-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  -o-transform: translateX(-3px);
}
.swiper-button-prev-fbn:hover {
  background-color: var(--text-color);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.swiper-button-prev-fbn.swiper-button-disabled,
.swiper-button-next-fbn.swiper-button-disabled {
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.breadcrumb-item a {
  color: var(--text-color);
  transition: color .3s ease;
  -webkit-transition: color .3s ease;
  -moz-transition: color .3s ease;
  -ms-transition: color .3s ease;
  -o-transition: color .3s ease;
}
.breadcrumb-item a:hover {
  color: var(--second-text-color);
  transition: color .3s ease;
  -webkit-transition: color .3s ease;
  -moz-transition: color .3s ease;
  -ms-transition: color .3s ease;
  -o-transition: color .3s ease;
}
/* trang sản phẩm chi tiết end */

.nh-lien-he-section-content-item-map-box iframe {
  pointer-events: auto !important;
}
.nh-lien-he-section-content-item-map-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
/* sửa web start */

