/* header start */
.hvr-underline-from-left::before {
  height: 1px;
  background: var(--background-color);
}

header.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* box-shadow: var(--box-shadow); */
  transition: all 0.3s linear;
  animation: xuathienmenu 1s ease-in-out;
}

@keyframes xuathienmenu {
  from {
    opacity: 0;
    top: -200px;
  }

  to {
    opacity: 1;
    top: 0;
  }
}

.nv-header {
  height: 110px;
  display: flex;
  align-items: center;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  background: var(--background-color);
}

.nv-header::after {
  position: absolute;
  content: "";
  bottom: -4px;
  height: 4px;
  left: 0;
  background-image: linear-gradient(to right,
      transparent 0,
      var(--main-color) 100px,
      var(--main-color) 200px,
      transparent 300px);
  background-repeat: no-repeat;
  background-position: -300px 0%;
  width: 100%;
  z-index: 1000;
  background-size: 200% 4px;
  animation: vanhiep-loader 2s ease-in-out infinite alternate;
}

@keyframes vanhiep-loader {
  0% {
    background-position-x: -300px;
  }

  100% {
    background-position-x: 100vw;
  }
}

.logo-nam-viet {
  /* max-width: 150px; */
  width: auto;
  height: 100px;
  object-fit: contain;
}

.nv-header-nav-menu-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.menu_a_level_1 {
  /* text-transform: capitalize; */
  font-size: 1rem;
  font-family: sans-r;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}

.menu_li_level_1:hover .menu_a_level_1 {
  color: var(--main-color);
  transition: all 0.3s ease-in-out;
}

.menu_a_level_1 i {
  font-size: 0.6rem;
}

.nv-header-nav-menu-search-phone a {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--main-color);
  font-family: sans-b;
  transition: all 0.3s ease-in-out;
}

.nv-header-nav-menu-search-phone a:hover {
  filter: brightness(50%);
  transition: all 0.3s ease-in-out;
}

.nv-header-nav-menu-search-btn {
  border-left: 1px solid var(--main-color);
  color: var(--main-color);
  cursor: pointer;
}

.nv-header-nav-menu-search-language a {
  color: var(--main-color);
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.nv-header-nav-menu-search-language a:hover {
  /* filter: brightness(50%); */
  transition: all 0.3s ease-in-out;
}

.menu_li_level_1 {
  position: relative;
}

.sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--background-color);
  top: 40px;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.5s ease-in-out;
  opacity: 0;
  /* overflow: hidden; */
}

.menu_li_level_2 {
  overflow: hidden;
}

.menu_li_level_1:hover .sub-menu {
  transform: scaleY(1);
  transition: 0.5s ease-in-out;
  opacity: 1;
}

.sub-menu::after {
  position: absolute;
  content: "";
  top: -22px;
  height: 30px;
  width: 100%;
  left: 0;
  background: transparent;
  z-index: -1;
}

.menu_a_level_2 {
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 0.9rem;
}

/* modal search start */
.ys-modal-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: rgba(255, 255, 255, 0);
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all 0.5s ease-in-out;
}

.ys-modal-search.active {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  background: rgba(255, 255, 255, 1);
  transform-origin: bottom;
  transition: all 0.5s ease-in-out;
}

.ys-modal-search-box {
  position: relative;
}

.ys-modal-search .form-control {
  background: transparent;
  border: 1px solid var(--text-color);
  font-size: 1.2rem;
}

.ys-btn-search {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.ys-btn-search i {
  font-size: 1.8rem;
  transition: all 0.3s ease-in-out;
}

.ys-btn-search i:hover {
  color: var(--second-text-color);
  transition: all 0.3s ease-in-out;
}

.btn-close-search .container {
  position: relative;
}

.btn-close-search {
  position: absolute;
  z-index: 2001;
  font-size: 4rem;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  top: 20px;
  right: 7%;
}

.btn-close-search:hover {
  transform: rotate(360deg);
  color: var(--second-main-color);
  transition: all 0.3s ease-in-out;
}

.sub-menu {
  background: var(--background-color);
  color: var(--text-color);
  list-style: none;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  border-radius: 5px;
  /* overflow: hidden; */
  top: 48px;
  transform: scaleY(0);
  transform-origin: top;
  box-shadow: rgba(0, 166, 87, 0.5) 0px 20px 30px -10px;
}

.dropdown:hover .sub-menu {
  transform: scaleY(1);
}

.dropdown:hover .menu_a_level_1 {
  color: var(--main-color);
}

.menu_a_level_2 {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 8px 10px;
  transition: all 0.3s ease-in-out;
  /* border-bottom: 1px solid #ebebeb; */
  font-size: 0.9rem;
  position: relative;
}

.menu_a_level_1::after {
  position: absolute;
  content: "";
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main-color);
  width: 0%;
  height: 2px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.menu_a_level_1:hover::after {
  width: 90%;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.menu_a_level_2:hover {
  background: var(--main-color);
  color: var(--background-color);
  transition: all 0.3s ease-in-out;
}

.sub-menu .menu_li_level_2:last-of-type .menu_a_level_2 {
  border-bottom: none;
}

/* modal search end */
.nv-header-nav-menu-search-btn:hover i {
  filter: brightness(50%);
}

.menu_li_level_2 {
  border-bottom: 1px solid #ebebeb;
}

.menu_li_level_2:first-of-type {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.menu_li_level_2:last-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.menu_li_level_2:last-of-type {
  border-bottom: none;
}

/* header end */
/* slider start */
.nv-slider {
  overflow: hidden;
  max-width: 100vw;
  position: relative;
}

.nv-slider-slider-image {
  overflow: hidden;
  max-height: 100vh;
  /* transform: scaleX(2); */
  position: relative;
}

.svg-slider-container {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: var(--background-color);
  bottom: -95%;
  left: 0%;
  width: 100%;
  height: 100%;
  clip-path: url(#slider-clip-path);
  background-size: cover;
  object-fit: cover;
  background-position: top;
  transform: scaleX(1.2);
}

.nv-slider-slider-image::after {
  position: absolute;
  content: "";
}

.nv-slider-slider-image img,
.nv-slider-slider-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 0;
}

.nv-slider-swiper-item {
  position: relative;
}

.nv-slider-item-content-box-btn-view-i-btn {
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  font-size: 1.2rem;
}

.nv-slider-item-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 90%;
  height: auto;
  color: var(--background-color);
}

.nv-slider-item-content-box {
  position: relative;
  padding-bottom: 20px;
  z-index: 5;
  max-width: 800px;
}

.vh-black-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.25) 40%,
      transparent 100%);
  z-index: 2;
  filter: blur(1px);
}

.nv-slider-box {
  position: relative;
  z-index: 2;
}

.nv-slider-item-content-box-title {
  font-family: Montserrat-Regular;
  font-size: 1.6rem;
  /* text-transform: capitalize; */
}

.nv-slider-item-content-box-des {
  font-size: 2.1rem;
  font-family: Montserrat-Bold;
  /* text-transform: capitalize; */
}

.nv-slider-item-content-box-btn-view-i-btn {
  background: var(--background-color);
  /* border: 1px solid var(--background-color); */
  color: var(--text-color);
  transition: all 0.3s ease;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.nv-slider-item-content-box-btn-view-text {
  color: var(--background-color);
  transition: all 0.3s ease-in-out;
  font-family: sans-b;
  font-size: 1.1rem;
}

.nv-slider-item-content-box-btn-view:hover .nv-slider-item-content-box-btn-view-i-btn {
  background: var(--main-color);
  color: var(--background-color);
  transition: all 0.3s ease-in-out;
}

.nv-slider-item-content-box-btn-view:hover .nv-slider-item-content-box-btn-view-text {
  color: var(--main-color);
  /* filter: brightness(50%); */
  transition: all 0.3s ease-in-out;
}

.nv-slider-swiper-pagination {
  position: absolute;
  left: initial;
  bottom: 10% !important;
  /* right: 10% !important; */
  z-index: 3;
  /* width: 100%; */
  height: 50px;
  text-align: left;
  padding-left: 10%;
  /* padding-right: 10%; */
}

.nv-slider .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 20px));
  border-radius: 0 !important;
  background: var(--background-color) !important;
  height: 5px !important;
}

/* slider end */
/* về chúng tôi start */
.nv-about-us-content-item-content-box {
  background: var(--main-color);
  color: var(--background-color);
  position: relative;
  z-index: 2;
}

.nv-about-us {
  min-height: 100vh;
  max-height: 1000px;
  background: transparent linear-gradient(180deg, #fff, rgba(0, 166, 87, 0.3)) 0 0 no-repeat padding-box;
}

.nv-about-us-content-item-content-box-name {
  font-size: 2.5rem;
  font-family: var(--title-font);
  text-transform: uppercase;
}

.nv-about-us-content-item-content-box-des {
  font-size: 1rem;
  font-family: Montserrat-Light;
  line-height: 1.6;
}

.icon-about-us {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: soft-light;
  /* filter: brightness(80%); */
}

.nv-about-us-content-item-image {
  position: relative;
  z-index: 2;
  transform: translateX(-100px);
}

.img-main-about-us {
  width: 500px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
}

.img-bg-about-us {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.img-bg-about-us-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 30%;
  z-index: 2;
  object-fit: contain;
}

.img-bg-about-us-2 {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 40%;
  object-fit: contain;
  transform: rotate(250deg);
}

.nv-about-us {
  position: relative;
}

.nv-about-us .container {
  position: relative;
  z-index: 3;
}

.nv-about-us-img-bg-1 {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: -4%;
  width: 250px;
  height: 250px;
  object-fit: contain;
}

.nv-about-us-img-bg-2 {
  position: absolute;
  z-index: 2;
  top: 0%;
  right: -8%;
  width: 350px;
  height: 350px;
  object-fit: contain;
}

.nv-about-us-content-item-content-box.active {
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  /* transition: all 0.3s ease-in-out; */
}

.nv-header.active {
  height: 80px;
}

.logo-nam-viet {
  height: 70px;
}

header.active .sub-menu {
  top: 35px;
}

/* về chúng tôi end */
/* sản phẩm của chúng tôi start */
.nv-our-products {
  padding-top: 50px;
  overflow: visible;
  position: relative;
}

.nv-our-products::before {
  position: absolute;
  content: "";
  height: 50px;
  top: -46px;
  background: var(--background-color);
  width: 100%;
  left: 0;
  clip-path: url(#our-product-clip-path);
}

.nv-our-products-content-title-name {
  font-size: 1.7rem;
  text-transform: uppercase;
  font-family: JosefinSans-Bold;
  color: var(--main-color);
  margin-bottom: 10px;
}

.svg-our-product {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

.nv-our-products-content-title-des {
  font-size: 1rem;
}

.nv-our-products-content-box-item-box-image {
  overflow: hidden;
  min-height: 100%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.nv-our-products-content-box-item-box-image.active {
  /* transition: all .3s ease-in-out; */
  box-shadow: rgba(0, 177, 73, 0.25) 0px 30px 60px -12px,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.nv-our-products-content-box-item-box-image a,
.nv-our-products-content-box-item-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nv-our-products-content-box-item-box-title {
  position: relative;
  z-index: 1;
  padding-top: 30px;
  /* padding-bottom: 20px; */
}

.nv-our-products-content-box-item-box-title-name {
  color: var(--text-color);
  font-family: lato-m;
  text-transform: uppercase;
  font-size: 1.8rem;
  position: relative;
  z-index: 3;
  background: transparent;
  /* margin-left: 110px; */
}

.nv-our-products-content-box-item-box-title-number {
  position: relative;
  top: 0px;
  left: 0;
  z-index: 2;
}

.nv-our-products-content-box-item-box-title-number {
  /* position: relative; */
  z-index: 2;
  font-size: 6rem;
  text-transform: uppercase;
  font-family: Poppins-Extrabold;
  color: var(--main-color);
  letter-spacing: 5px;
}

.nv-our-products-content-box-item-box-title-link {
  position: relative;
  z-index: 3;
  /* transform: translateX(-8%); */
}

.nv-our-products-content-box-item-box-title-link a {
  color: var(--main-color);
  font-size: 1.5rem;
  text-transform: lowercase;
  font-family: lato-b;
  transition: all 0.3s ease-in-out;
}

.nv-our-products-content-box-item-box {
  height: 100%;
}

.nv-our-products-content-box-item-box-des {
  font-family: var(--normal-font);
  font-size: 1rem;
}

.nv-our-products-content-box-item-box-title-link a:hover {
  /* color: var(--second-main-color); */
  filter: brightness(80%);
  transition: all 0.3s ease-in-out;
}

.nv-our-products-content-box-item-box-view-more .nv-slider-item-content-box-btn-view-i-btn {
  background: var(--main-color);
  color: var(--background-color);
}

.nv-our-products-content-box-item-box-view-more .nv-slider-item-content-box-btn-view-text {
  color: var(--main-color);
}

.nv-our-products-content-box-item-box-view-more:hover {
  filter: brightness(80%);
  transition: all 0.3s ease-in-out;
}

.vh-border-radius-right {
  border-top-right-radius: 49%;
  border-bottom-right-radius: 49%;
}

.vh-border-radius-left {
  border-top-left-radius: 49%;
  border-bottom-left-radius: 49%;
}

.nv-our-products-container {
  max-width: 100vw;
  overflow: hidden;
}

/* sản phẩm của chúng tôi end */
/* sản phẩm phân hủy start */
.nv-degradation-product {
  /* padding: 0; */
  position: relative;
  overflow: visible;
}

.nv-degradation-product-container {
  position: relative;
  z-index: 5;
}

.nv-degradation-product {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
}

.nv-degradation-product-item {
  position: relative;
  height: 100%;
}

.nv-degradation-product-item-box {
  background: rgba(0, 0, 0, 0.5);
  color: var(--background-color);
}

.nv-degradation-product-item-box-title {
  font-family: var(--title-font);
  font-size: 1.8rem;
  text-transform: capitalize;
}

.nv-degradation-product-item-box-des {
  line-height: 1.7;
  /* letter-spacing: 1px; */
  font-family: JosefinSans-Light;
  font-size: 1.2rem;
}

.nv-degradation-product-item-image-container {
  position: relative;
}

.dung-cu-icon {
  position: absolute;
  z-index: 5;
  height: auto;
  object-fit: contain;
}

.dung-cu-icon-1 {
  bottom: -100px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  width: 200px;
}

.dung-cu-icon-2 {
  bottom: 0;
  left: 0%;
  z-index: 3;
  width: 250px;
}

.dung-cu-icon-3 {
  top: 0;
  left: 35%;
  z-index: 3;
  width: 80px;
}

.dung-cu-icon-4 {
  top: 8%;
  left: 29%;
  z-index: 3;
  width: 80px;
}

.dung-cu-icon-5 {
  top: 0%;
  left: 47%;
  z-index: 3;
  width: 50px;
  transform: rotate(20deg);
}

.dung-cu-icon-6 {
  top: 5%;
  right: 20%;
  z-index: 3;
  width: 120px;
  transform: rotate(20deg);
}

.dung-cu-icon-7 {
  top: 15%;
  right: 39%;
  z-index: 3;
  width: 55px;
  transform: rotate(-3deg);
}

.dung-cu-icon-8 {
  bottom: 0%;
  right: 11%;
  z-index: 5;
  width: 110px;
  transform: rotate(7deg);
}

.nv-degradation-product-item-image-container {
  width: 100%;
  height: 100%;
}

/* sản phẩm phẩn hủy end */
/* đối tác chiến lược start */
.nv-partners-content-item-title {
  font-size: 1.6rem;
  color: var(--main-color);
  text-transform: uppercase;
  font-family: var(--title-font);
}

.nv-partners-swiper-image {
  overflow: hidden;
  border: 2px solid var(--main-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.nv-partners-swiper-image a,
.nv-partners-swiper-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* đối tác chiến lược end */
/* footer start */
.nv-footer {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 50px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: bottom !important;
  padding-top: 100px;
  color: var(--background-color);
}

.nv-footer .container {
  position: relative;
  z-index: 5;
}

.bg-footer {
  position: absolute;
  top: -800px;
  left: 0;
  width: 100%;
  height: 850px;
  background: var(--background-color);
  transform: scaleX(1.5);
  clip-path: url(#slider-clip-path);
  z-index: 2;
}

.nv-footer-item-title {
  font-size: 1.3rem;
  text-transform: uppercase;
  font-family: var(--title-font);
}

.nv-footer-item-content {
  font-family: Montserrat-Regular;
}

.nv-footer-item-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.nv-footer-item-ul li a {
  color: var(--background-color);
  transition: all 0.3s ease-in-out;
  font-size: 1.1rem;
}

.nv-footer-item-content-form .form-control {
  box-shadow: none;
  border-radius: 0;
  background: var(--background-color);
}

.nv-footer-item-content-form button {
  background: var(--main-color);
  color: var(--background-color);
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 0;
  font-size: 1.3rem;
}

.nv-footer-item-content-form .input-group {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
    rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
    rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.nv-footer-item-content-social-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.nv-footer-item-content-social-ul a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--background-color);
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: var(--text-color);
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  transition: all 0.3s ease-in-out;
}

.nv-footer-item-content-social-li:nth-child(1) a:hover {
  background: #0067ef;
  color: var(--background-color);
}

.nv-footer-item-content-social-li:nth-child(2) a:hover {
  background-color: #fa8bff;
  background-image: linear-gradient(45deg,
      #fa8bff 0%,
      #2bd2ff 52%,
      #2bff88 90%);
  color: var(--background-color);
}

.nv-footer-item-content-social-li:nth-child(3) a:hover {
  background: #0099e3;
  color: var(--background-color);
}

.nv-footer-item-content-social-li:nth-child(4) a:hover {
  background-color: #4158d0;
  background-image: linear-gradient(43deg,
      #4158d0 0%,
      #c850c0 46%,
      #ffcc70 100%);
  color: var(--background-color);
}

.nv-footer-item-content-social-li:nth-child(5) a:hover {
  background: #c7001f;
  color: var(--background-color);
}

.nv-footer-item-content-polyci-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nv-footer-item-content-polyci-li a {
  color: var(--background-color);
  font-size: 0.8rem;
  border-right: 1px solid var(--background-color);
}

.nv-footer-item-content-polyci-li:last-of-type a {
  border-right: none;
}

.nv-footer-copyright {
  font-size: 0.9rem;
  font-family: Montserrat-Regular;
}

.nv-footer-copyright-text {
  border-left: 1px solid var(--background-color);
}

.nv-footer-copyright-text a {
  color: var(--background-color);
}

.nv-footer-copyright {
  /* border-top: 1px solid var(--main-color); */
}

/* footer end */
/* banner start */
.nv-banner {
  max-width: 100vw;
  /* overflow: hidden; */
  position: relative;
}

.nv-banner::before {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top,
      rgba(255, 255, 255, 1) 30%,
      transparent 100%);
  z-index: 3;
}

.nv-banner-image {
  position: relative;
  z-index: 1;
}

.nv-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nv-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.white-bg {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}

.nv-banner-content-des {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--second-text-color);
  font-family: var(--title-font);
}

/* banner end */
/* breadcbrumb start */
.nv-breadcrumb-ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
}

.nv-breadcrumb-a {
  position: relative;
  display: inline-flex;
  padding: 5px 10px;
  padding-right: 18px;
  color: var(--text-color);
  font-family: JosefinSans-Bold;
  transition: all 0.3s ease-in-out;
  font-size: 1.1rem;
}

.nv-breadcrumb-a:hover {
  color: var(--main-color);
}

.nv-breadcrumb-a::before {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  color: var(--main-color);
  filter: brightness(90%);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

.nv-breadcrumb-li:last-of-type .nv-breadcrumb-a {
  padding-right: 0;
  /* color: var(--second-text-color); */
}

.nv-breadcrumb-li:last-of-type .nv-breadcrumb-a::before {
  display: none;
}

/* breadcrumb end */
/* trang cố định start */
.page-static-main-image {
  overflow: hidden;
  --bs-aspect-ratio: 110%;
  position: relative;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border: 10px solid #e0e0e0;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -36px 10px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -49px 20px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 12px 16px;
}

.page-static-main-image a {
  width: 100%;
  height: 100%;
}

.page-static-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-static-main-content-item-title {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--main-color);
  font-family: Poppins-ExtraBold;
}

.page-static-main-content-item-des {
  font-family: Montserrat-Regular;
}

.page-static-main-content-item {
  position: relative;
}

.hinh-tuong-ot {
  position: absolute;
  bottom: -5%;
  right: 0;
  width: 100%;
  max-height: 40%;
  height: auto;
  z-index: 3;
  object-fit: contain;
  object-position: right;
}

.nv-page-content-extra-item-image {
  /* overflow: hidden; */
  border-radius: 50%;
  width: 500px;
  height: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.nv-page-content-extra-item {
  position: relative;
  z-index: 1;
}

.nv-page-content-extra-item-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--main-color);
  z-index: 1;
  /* animation: xoay-vong 3s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite; */
}

.nv-page-content-extra-item-line::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  z-index: 3;
  background: var(--main-color);
  top: 115px;
  left: 23px;
}

@keyframes xoay-vong {
  0% {
    transform: rotate(360deg);
  }

  50% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.nv-page-content-extra-item-image a,
.nv-page-content-extra-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 5;
}

.nv-page-content-extra-item-image a {
  padding: 10px;
  display: flex;
}

.nv-page-content-extra-item-image img {
  /* box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px; */
}

.nv-page-content-extra-item-title {
  font-family: var(--title-font);
  font-size: 1.8rem;
  text-transform: uppercase;
}

.nv-page-content-extra-item-des {
  color: var(--text-color);
  font-family: var(--normal-font);
}

.image-extra-ml {
  /* transform: translateX(15px) scale(1); */
  transition: all 2s linear;
}

.image-extra-ml:hover {
  /* /* transform: translateX(15px) scale(1.05); */
  /* transition: all 2s linear;
  transform: scale(1.15); */
}

.nv-page-content-extra {
  background: transparent linear-gradient(360deg, #fff, rgba(0, 166, 87, 0.3)) 0 0 no-repeat padding-box;
  padding-top: 100px;
  position: relative;
}

.nv-page-content-extra-item-image a {
  overflow: hidden;
}

.nv-page-content-extra::before {
  position: absolute;
  content: "";
  top: -4px;
  height: 50%;
  width: 100%;
  background: transparent linear-gradient(180deg, #fff, rgba(0, 166, 87, 0.3)) 0 0 no-repeat padding-box;
  z-index: 1;
  clip-path: url(#page-static-clip-path);
}

.svg-page-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

/* trang cố định end */
/* câu chuyện neo nam việt start */
.cau-chuyen-nnv-swiper-item-number {
  font-size: 3rem;
  text-transform: uppercase;
  color: transparent;
  font-family: sans-b;
  /*-webkit-text-stroke: 1px var(--main-color);
  */
  -webkit-text-stroke: 1px #bcbcbc;
  cursor: pointer;
  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;
}

.cau-chuyen-nnv-swiper {
  max-height: 300px;
}

.cau-chuyen-nnv-swiper-item-box-line-inside {
  position: relative;
  width: 20px;
  height: 20px;
  background: #bcbcbc;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  z-index: 1;
  cursor: pointer;
}

.cau-chuyen-nnv-swiper .swiper-slide-thumb-active .cau-chuyen-nnv-swiper-item-number {
  -webkit-text-stroke: 3px var(--main-color);
  font-size: clamp(3.5rem, 3.3398rem + 0.7767vw, 4rem);
  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;
}

.cau-chuyen-nnv-swiper .swiper-slide-thumb-active .cau-chuyen-nnv-swiper-item-box-line-inside {
  background: var(--main-color);
}

.cau-chuyen-nnv-swiper .swiper-slide-thumb-active .cau-chuyen-nnv-swiper-item-box-line-inside::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: var(--background-color);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.cau-chuyen-nnv-swiper .swiper-slide-thumb-active .cau-chuyen-nnv-swiper-item-box-line-inside::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: var(--main-color);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.cau-chuyen-nnv-swiper-item {
  height: 60px;
}

.cau-chuyen-nnv-swiper-item-box-line {
  position: relative;
}

.cau-chuyen-nnv-swiper-item-box-line::before {
  position: absolute;
  content: "";
  top: -81px;
  left: 9.5px;
  width: 0px;
  height: 70px;
  border-right: 2px dashed #dddddd;
}

.cau-chuyen-nnv-swiper-main {
  max-height: 500px;
}

.cau-chuyen-nnv-swiper-main-item-image {
  overflow: hidden;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.cau-chuyen-nnv-swiper-main-item-image a,
.cau-chuyen-nnv-swiper-main-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-cau-chuyen-nnv-section {
  position: relative;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: right;
}

.page-cau-chuyen-nnv-section::before {
  position: absolute;
  content: "";
  width: 52%;
  height: 100%;
  top: 0;
  right: 0;
  /* background: var(--background-color); */
  background: transparent linear-gradient(180deg,
      #fff,
      rgba(0, 166, 87, 0.05),
      rgba(255, 255, 255, 0.5)) 0 0 no-repeat padding-box;
}

.cau-chuyen-nnv-swiper-main-item-content {
  /* background: rgba(255, 255, 255, 0.9); */
  font-family: Montserrat-Medium;
  font-size: 1.1rem;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; */
}

.cau-chuyen-nnv-swiper-main-item {
  display: flex;
  align-items: center;
  height: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.cau-chuyen-nnv-swiper-main-item-image-col {
  position: relative;
}

.cau-chuyen-nnv-swiper-main-item-image-box {
  filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 15%;
  width: 100%;
  transform: translateY(-50%);
}

.cau-chuyen-nnv-swiper-main .swiper-slide-active .cau-chuyen-nnv-swiper-main-item {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

/* câu chuyện neo nam việt end */
/* thông điệp từ ceo start */
.page-thong-diep-ceo-content-subitem {
  position: relative;
}

.page-thong-diep-ceo-content-subitem-brand-text::before {
  position: absolute;
  content: "";
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 60%, transparent);
}

.page-thong-diep-ceo-content-subitem-image {
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  border-radius: 10px;
}

.page-thong-diep-ceo-content-subitem-image.active {
  box-shadow: rgb(0, 166, 87, 0.5) 0px 20px 30px -10px;
}

.page-thong-diep-ceo-content-subitem-image a,
.page-thong-diep-ceo-content-subitem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-thong-diep-ceo-content-subitem-brand {
  font-family: Poppins-Extrabold;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 0.0792rem + 10.7673vw, 13rem);
  color: transparent;
  -webkit-text-stroke: 2px var(--main-color);
  text-align: center;
  text-wrap: nowrap;
}

.page-thong-diep-ceo-content-subitem-title {
  font-family: JosefinSans-Bold;
  color: var(--main-color);
  text-transform: uppercase;
  font-size: 1.5rem;
}

.page-thong-diep-ceo-content-subitem-des {
  font-family: Montserrat-Regular;
  font-size: 1.05rem;
}

.thong-diep-tu-ceo-noi-dung-line {
  border-top: 1.5px dashed #888888;
}

.thong-diep-tu-ceo-noi-dung-title {
  color: var(--main-color);
  font-family: Poppins-Extrabold;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.thong-diep-tu-ceo-noi-dung-content-box-item-image {
  overflow: hidden;
  --bs-aspect-ratio: 150%;
  background-color: #85ffbd;
  background-image: linear-gradient(45deg, #85ffbd 0%, #fffb7d 100%);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.thong-diep-tu-ceo-noi-dung-content-box-item-image a,
.thong-diep-tu-ceo-noi-dung-content-box-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.thong-diep-tu-ceo-noi-dung-content-box-item-content {
  font-family: Montserrat-Regular;
}

/* thông điệp từ ceo end */
/* sở đồ cơ cấu tổ chức start */
.page-co-cau-to-chuc-content-image {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: rgb(0, 166, 87, 0.5) 0px 20px 30px -10px;
}

.page-co-cau-to-chuc-content-image a,
.page-co-cau-to-chuc-content-image img {
  width: 100%;
  height: auto;
  cursor: zoom-in;
}

/* sơ đồ cơ cấu tổ chức end */
/* tin tức item start */
.nv-news-item-image {
  overflow: hidden;
}

.nv-news-item-image a,
.nv-news-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nv-news-item-a {
  color: var(--text-color);
  font-family: Montserrat-Regular;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
}

.nv-news-item {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.nv-news-item-a .nv-news-item-content-top-date {
  color: var(--main-color);
  transition: all 0.3s ease-in-out;
}

.nv-news-item-a:hover .nv-news-item-content-top-date {
  color: var(--background-color);
  transition: all 0.3s ease-in-out;
}

.nv-news-item-content {
  background: rgba(255, 255, 255, 1);
  transition: all 0.3s ease-in-out;
}

.nv-news-item-a:hover .nv-news-item-content {
  background: rgba(0, 166, 87, 1);
  color: var(--background-color);
  transition: all 0.3s ease-in-out;
}

.nv-news-item-content-bottom {
  color: var(--main-color);
  transition: all 0.3s ease-in-out;
}

.nv-news-item-a:hover .nv-news-item-content-bottom {
  color: var(--background-color);
  transition: all 0.3s ease-in-out;
}

.nv-swiper-tintuc-content-title {
  font-size: 2rem;
  text-transform: uppercase;
  font-family: Poppins-Extrabold;
}

.page-co-cau-to-chuc-wrapper {
  position: relative;
  background: transparent linear-gradient(180deg,
      #fff,
      rgba(0, 166, 87, 0.3),
      rgba(255, 255, 255, 0.5)) 0 0 no-repeat padding-box;
}

/* tin tức item end */
/* giải thưởng start */
.page-giai-thuong-tieu-chuan-content-item-title {
  font-size: 2rem;
  color: var(--main-color);
  font-family: Poppins-Extrabold;
  text-transform: uppercase;
}

.page-giai-thuong-tieu-chuan-content-item-content {
  font-family: Montserrat-Regular;
}

.page-giai-thuong-tieu-chuan-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-position: right;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.page-giai-thuong-tieu-chuan-page {
  position: relative;
  background: transparent linear-gradient(180deg,
      #fff,
      rgba(0, 166, 87, 0.3),
      rgba(255, 255, 255, 0.5)) 0 0 no-repeat padding-box;
  padding: 100px 0;
  z-index: 1;
  overflow: visible;
}

.page-giai-thuong-tieu-chuan-page::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 1) 20%,
      transparent 100%);
  z-index: 3;
  top: -4px;
  left: 0;
}

.page-giai-thuong-tieu-chuan-page::after {
  position: absolute;
  content: "";
  background: var(--background-color);
  width: 100%;
  height: 50px;
  z-index: 3;
  left: 0;
  bottom: -4px;
  clip-path: url(#giai-thuong-clip-path);
}

.page-giai-thuong-tieu-chuan-page .container {
  position: relative;
  z-index: 5;
}

.page-giai-thuong-tieu-chuan-content-item {
  background: var(--background-color);
  box-shadow: rgba(0, 167, 87, 0.5) 0px 20px 30px -10px;
}

/* giải thưởng end */
/* chứng nhận start */
.chung-nhan-content-item-image {
  overflow: hidden;
  --bs-aspect-ratio: 140%;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.chung-nhan-content-item-image a,
.chung-nhan-content-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chung-nhan-page {
  position: relative;
  background: transparent linear-gradient(180deg,
      #fff,
      rgba(0, 166, 87, 0.3),
      rgba(255, 255, 255, 0.5)) 0 0 no-repeat padding-box;
}

/* chứng nhận end */
.svg-giai-thuong {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

/* tổng quan về nghành hàng start */
.tong-quan-ve-nghanh-hang-page {
  max-width: 1600px;
  margin: 0 auto;
}

.tong-quan-ve-nghanh-hang-page-content-subitem-bottom {
  overflow: hidden;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.tong-quan-ve-nghanh-hang-page-content-subitem-bottom a,
.tong-quan-ve-nghanh-hang-page-content-subitem-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tong-quan-ve-nghanh-hang-page-content-subitem {
  position: relative;
}

.tong-quan-ve-nghanh-hang-page-content-subitem-top {
  position: absolute;
  bottom: -14%;
  left: 0;
  z-index: 3;
}

.tong-quan-ve-nghanh-hang-page-content-subitem {
  font-family: Montserrat-Regular;
}

.tong-quan-ve-nghanh-hang-page {
  position: relative;
}

.tong-quan-ve-nghanh-hang-page::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  top: 3%;
  left: -5%;
  background-image: url("../../img_data/images/nam_viet/templates/39357320_1.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.6;
}

.tong-quan-ve-nghanh-hang-page::after {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  top: 50%;
  right: -5%;
  background-image: url("../../img_data/images/nam_viet/templates/39357320_1.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.6;
}

.tong-quan-ve-nghanh-hang-page-content-subitem-top img {
  height: 250px;
  max-width: 300px;
  object-fit: contain;
}

.page-chi-tiet-bien-tinh-san-page-content-main-item-image img {
  max-width: 100%;
  height: auto;
}

/* tổng quan về nghành hàng end */
/* trang biến tính sắn start */
.page-content-extra-item-image-box-image {
  max-width: 400px;
  overflow: hidden;
  /* clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); */
  position: relative;
  z-index: 3;
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
}

.page-content-extra-item-image-box-image a,
.page-content-extra-item-image-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-content-extra-item-content {
  background: #f0fff7;
}

.page-content-extra-item-content-title {
  font-family: Poppins-Extrabold;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.page-content-extra-item-content-des {
  font-family: Montserrat-Regular;
}

.page-content-extra-item-image-box {
  position: relative;
  z-index: 1;
  filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.25));
}

.page-chi-tiet-bien-tinh-san-page-content-extra-item:nth-child(odd) .page-content-extra-item-image-box {
  transform: translateX(20%);
  -webkit-transform: translateX(20%);
  -moz-transform: translateX(20%);
  -ms-transform: translateX(20%);
  -o-transform: translateX(20%);
}

.page-chi-tiet-bien-tinh-san-page-content-extra-item:nth-child(even) .page-content-extra-item-image-box {
  transform: translateX(-10%);
  -webkit-transform: translateX(-10%);
  -moz-transform: translateX(-10%);
  -ms-transform: translateX(-10%);
  -o-transform: translateX(-10%);
}

.page-chi-tiet-bien-tinh-san-page-content-extra-item:nth-child(odd) .page-content-extra-item-content {
  padding-left: 100px !important;
}

.page-chi-tiet-bien-tinh-san-page-content-extra-item:nth-child(even) .page-content-extra-item-content {
  padding-right: 100px !important;
}

.page-content-extra-item-image-box::before {
  position: absolute;
  top: -5%;
  left: -5%;
  content: "";
  z-index: 1;
  width: 90%;
  height: 90%;
  background: #d9d9d9;
  max-width: 400px;
  transform: rotate(20deg);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: none;
}

.page-chi-tiet-bien-tinh-san-page-content-main-item-title {
  font-size: 2rem;
  text-transform: uppercase;
  font-family: Poppins-Extrabold;
  color: var(--main-color);
}

.page-chi-tiet-bien-tinh-san-page-content-main-item-des {
  font-family: Montserrat-Regular;
}

.page-chi-tiet-bien-tinh-san-page {
  background: transparent linear-gradient(180deg,
      #fff,
      rgba(0, 166, 87, 0.3),
      rgba(255, 255, 255, 0.5)) 0 0 no-repeat padding-box;
}

/* trang biến tính sắn end */
/* trang chính sách quản trị doanh nghiệp start */
.page-chinh-sach-quan-tri-doanh-nghiep-page-content-box-item-image {
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  border-radius: 10px;
}

.page-chinh-sach-quan-tri-doanh-nghiep-page-content-box-item-image a,
.page-chinh-sach-quan-tri-doanh-nghiep-page-content-box-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-chinh-sach-quan-tri-doanh-nghiep-page-title {
  font-family: Montserrat-Regular;
}

.chinh-sach-quan-tri-doanh-nghiep-content-box-item-box-title {
  font-family: Poppins-Extrabold;
  text-transform: uppercase;
  color: var(--text-color);
  font-size: 1.5rem;
}

.chinh-sach-content-box-item-box-content-item-label {
  font-family: var(--title-font);
}

.chinh-sach-content-box-item-box-content-item {
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}

.chinh-sach-content-box-item-box-content-item:hover {
  color: var(--main-color);
  filter: brightness(90%);
  transition: all 0.3s ease-in-out;
}

.chinh-sach-content-box-item-box-content-item-icon {
  background: var(--text-color);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  position: relative;
  z-index: 1;
}

.chinh-sach-content-box-item-box-content-item-icon::after {
  position: absolute;
  content: "";
  width: 95%;
  height: 95%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--background-color);
  z-index: 1;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.chinh-sach-content-box-item-box-content-item-icon i {
  /* background: red; */
  position: relative;
  z-index: 2;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
}

.chinh-sach-content-box-item-box-content-item:hover .chinh-sach-content-box-item-box-content-item-icon::after {
  background: var(--main-color);
  transition: all 0.3s ease-in-out;
}

.chinh-sach-content-box-item-box-content-item:hover .chinh-sach-content-box-item-box-content-item-icon i {
  color: var(--background-color);
  transition: all 0.3s ease-in-out;
}

/* trang chính sách quản trị doanh nghiệp end */
/* trang chính sách văn bản tiêu chuẩn start */
.chinh-sach-van-ban-to-chuc-page-section-content-item-box-file-item-icon {
  width: 45px;
  height: 45px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
  position: relative;
  font-size: 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f0f0f0;
}

.chinh-sach-van-ban-to-chuc-page-section-content-item-box-file-item-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--main-color);
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.chinh-sach-van-ban-to-chuc-page-section-content-item-box-file-item:hover .chinh-sach-van-ban-to-chuc-page-section-content-item-box-file-item-icon::before {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.chinh-sach-van-ban-to-chuc-page-section-content-item-box-file-item:hover .chinh-sach-van-ban-to-chuc-page-section-content-item-box-file-item-icon {
  border-color: var(--background-color);
  transition: all 0.3s ease-in-out;
}

.chinh-sach-van-ban-to-chuc-page-section-content-item-box-file-item:hover i {
  color: var(--background-color);
  transition: all 0.3s ease-in-out;
}

.chinh-sach-van-ban-to-chuc-page-section-content-item-box-file-item-label {
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
  font-family: Montserrat-Regular;
  transition: all 0.3s ease-in-out;
}

.chinh-sach-van-ban-to-chuc-page-section-content-item-box {
  position: relative;
  background: linear-gradient(180deg,
      rgba(0, 167, 87, 0.1),
      rgba(0, 167, 87, 0.3));
  z-index: 2;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  transform: translateX(-150px);
}

.chinh-sach-van-ban-to-chuc-page-section-content-item-box::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 95%;
  height: 95%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: var(--background-color);
}

.chinh-sach-van-ban-to-chuc-page-section-content-item-box-title {
  font-size: 1.5rem;
  font-family: Poppins-Extrabold;
  color: var(--main-color);
  text-transform: uppercase;
}

.chinh-sach-van-ban-to-chuc-page-section-content-item-image {
  overflow: hidden;
}

.chinh-sach-van-ban-to-chuc-page-section-content-item-image a,
.chinh-sach-van-ban-to-chuc-page-section-content-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chinh-sach-van-ban-to-chuc-page-section-content-item-box-file-item-label {
  font-family: Montserrat-Regular;
  /* text-transform: capitalize; */
  font-size: 1.1rem;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}

.chinh-sach-van-ban-to-chuc-page-section-content-item-box-file-item:hover .chinh-sach-van-ban-to-chuc-page-section-content-item-box-file-item-label {
  color: var(--main-color);
  transition: all 0.3s ease-in-out;
}

.chinh-sach-van-ban-to-chuc-page-section,
.page-chinh-sach-chong-tn-bao-mat-tt-section {
  background: transparent linear-gradient(180deg,
      #fff,
      rgba(0, 166, 87, 0.3),
      rgba(255, 255, 255, 0.5)) 0 0 no-repeat padding-box;
}

/* trang chính sách văn bản tiêu chuẩn end */
.dropdown_cap_2::before {
  display: none;
}

/* trang chính sách bảo mật thông tin start */
.page-chinh-sach-chong-tn-bao-mat-tt-section-item:nth-child(even) .chinh-sach-van-ban-to-chuc-page-section-content-item-box {
  transform: translateX(150px);
}

/* trang chính sách bảo mật thông tin end */
/* tin tức detail start */
.zc-page-news {
  top: 83px;
}

.news-detalis {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
}

.zc-news-top-content h3 a:hover {
  color: var(--main-color);
}

/* tin tức detail end */
/* trang tuyển dụng start */
.nv-tuyen-dung-page-content-subitem-image {
  overflow: hidden;
}

.nv-tuyen-dung-page-content-subitem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nv-tuyen-dung-page {
  /* background: transparent
    linear-gradient(
      180deg,
      #fff,
      rgba(0, 166, 87, 0.3),
      rgba(255, 255, 255, 0.5)
    )
    0 0 no-repeat padding-box; */
}

/* trang tuyển dụng end */
/* liên hệ start */
.nv-contact-page-content-box-item {
  width: 100%;
}

.nv-contact-page-content-box-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nv-contact-page-content-box-item ul {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.nv-contact-page-content-box-item ul li {
  width: 33%;
  text-align: center;
  font-family: var(--normal-font);
  font-size: 1rem;
}

.nv-contact-page-form-map-item {
  height: 100%;
  background: var(--main-color);
}

.nv-contact-page-form-map-item-form-box {
  background: var(--background-color);
  position: relative;
  z-index: 3;
  transform: translateX(-170px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 20px -30px;
}

.nv-contact-page-form-map-item iframe {
  width: 100%;
  height: 100%;
}

.nv-contact-page-form-map-item-form-box .form-control {
  border-radius: 5px;
  box-shadow: none;
  border: 1px solid #adadad;
  background: transparent;
}

.nv-btn-gui-lien-he {
  border: none;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* liên hệ end */
/* trang làm việc với chúng tôi start */
.lam-viec-voi-chung-toi-page-content-breadcrumb-item-btn-search {
  width: 45px;
  height: 45px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  color: var(--main-color);
  /* border: 1px solid var(--main-color); */
  background: var(--main-color);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transition: all 0.3s ease-in-out;
}

.lam-viec-voi-chung-toi-page-content-breadcrumb-item-btn-search::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: var(--background-color);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transition: all 0.3s ease-in-out;
}

.lam-viec-voi-chung-toi-page-content-breadcrumb-item-btn-box {
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.6));
}

.lam-viec-voi-chung-toi-page-content-breadcrumb-item-btn-box:hover .lam-viec-voi-chung-toi-page-content-breadcrumb-item-btn-search::before {
  background: var(--main-color);
  transition: all 0.3s ease-in-out;
}

.lam-viec-voi-chung-toi-page-content-breadcrumb-item-btn-box:hover .lam-viec-voi-chung-toi-page-content-breadcrumb-item-btn-search {
  color: var(--background-color);
  transition: all 0.3s ease-in-out;
}

.lam-viec-voi-chung-toi-page-content-breadcrumb-label {
  font-family: var(--title-font);
}

.lam-viec-voi-chung-toi-page-content-breadcrumb-select .form-select {
  border: 1px solid var(--main-color);
  max-width: 150px;
  cursor: pointer;
}

.lam-viec-voi-chung-toi-result-share i {
  font-size: 1.1rem;
  color: var(--main-color);
  transition: all 0.3s ease-in-out;
}

.lam-viec-voi-chung-toi-page-content-breadcrumb-item-btn-box {
  text-align: right;
  width: 100%;
}

.lam-viec-voi-chung-toi-result-filter-label {
  font-family: var(--title-font);
}

#result-count {
  color: var(--main-color);
  font-size: 1.1rem;
}

.lam-viec-voi-chung-toi-page-list-content {
  border-top: 1px solid #ececec;
}

.lam-viec-voi-chung-toi-page-list-content .accordion-button {
  border-radius: 5px;
  border: 1px solid #ececec;
  font-size: 1.1rem;
  font-family: Poppins-Extrabold;
  text-transform: uppercase;
}

.lam-viec-voi-chung-toi-page-list-content .accordion-item {
  margin-bottom: 10px;
  border: none;
}

.lam-viec-voi-chung-toi-page-list-content .accordion-item:first-of-type .accordion-button {
  border-radius: 5px;
}

.lam-viec-voi-chung-toi-page-list-content .accordion-item:last-of-type .accordion-button {
  border-radius: 5px;
}

.lam-viec-voi-chung-toi-page-list-content .accordion-button:not(.collapsed) {
  color: var(--background-color);
  background: var(--main-color);
}

.tuyen-dung-noi-lam-viec-label {
  font-family: var(--title-font);
}

.tuyen-dung-noi-lam-viec {
  border-bottom: 1px solid #ececec;
}

.tuyen-dung-noi-lam-viec-btn-apply {
  cursor: pointer;
}

.tuyen-dung-list-content .tuyen-dung-noi-lam-viec:last-of-type {
  border-bottom: none;
}

.modal-tuyen-dung-body-content-form .form-control {
  box-shadow: none;
  border-radius: 0;
  border: 1px solid var(--text-color);
  background: #ececec;
}

.modal-tuyen-dung-body-content-form .form-select {
  border-color: var(--text-color);
  border-radius: 0;
  cursor: pointer;
}

.nv-btn-apply-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  text-align: center;
  font-family: Poppins-Extrabold;
  color: var(--background-color);
  padding: 8px 5px;
  font-size: 1.1rem;
  background-color: #85ffbd;
  background-image: linear-gradient(45deg, #85ffbd 0%, #fffb7d 100%);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  border: none;
  transition: all 0.3s ease-in-out;
}

.nv-btn-apply-submit:hover {
  color: var(--background-color);
  background-color: #21d4fd;
  background-image: linear-gradient(19deg, #21d4fd 0%, #b721ff 100%);
  transition: all 0.3s ease-in-out;
}

.lam-viec-voi-chung-toi-page {
  background: transparent linear-gradient(180deg,
      #fff,
      rgba(0, 166, 87, 0.3),
      rgba(255, 255, 255, 0.5)) 0 0 no-repeat padding-box;
}

/* trang làm việc với chúng tôi end */
/* trang sản phẩm start */
.nv-product-page-content {
  max-width: 800px;
  margin: 0 auto;
  font-family: Montserrat-Regular;
}

.nv-product-page-content .nv-product-page-title {
  font-family: Poppins-Extrabold;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--main-color);
}

/* trang sản phẩm end */
.logo-sologan-nam-viet {
  height: 60px;
  object-fit: contain;
  margin-right: 10px;
}

.logo-sologan-nam-viet-mobile {
  height: 45px !important;
  object-fit: contain;
  margin-right: 5px;
}

/* tin tức random trên slider start */
.nv-slider-news-top {
  position: absolute;
  right: 10%;
  bottom: 5%;
  z-index: 5;
  width: 40%;
  /* display: flex; */
  /* align-items: center; */
  color: var(--background-color);
}

.nv-slider-news-top-swiper {
  position: relative;
}

.nv-slider-news-top-swiper-item {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.nv-slider-news-top-swiper-item-image {
  overflow: hidden;
  border: 1px solid var(--background-color);
  position: relative;
  z-index: 1;
}

.nv-slider-news-top-swiper-item-image a,
.nv-slider-news-top-swiper-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nv-slider-news-top-swiper-item-content-box {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top,
      rgba(0, 168, 96, 0.7) 50%,
      transparent 100%);
  color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}

.nv-slider-news-top-swiper-item:hover .nv-slider-news-top-swiper-item-content-box {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.nv-slider-news-top-swiper-item-text {
  font-size: 0.9rem;
}

.nv-slider-news-top-navigation-button {
  cursor: pointer;
  font-size: 2rem;
  transition: all 0.3s ease-in-out;
}

.nv-slider-news-top-navigation-button:hover {
  color: var(--main-color);
  transition: all 0.3s ease-in-out;
}

.nv-slider-news-top-navigation-button.swiper-button-disabled {
  color: #ccc;
  cursor: no-drop;
}

/* tin tức random trên slider end */
/* trang thông điệp từ CEO */
.gia-tri-tam-nhin-content-subitem-image {
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.gia-tri-tam-nhin-content-subitem-image a,
.gia-tri-tam-nhin-content-subitem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* trang CV start */
.nv-form-label {
  color: var(--text-color);
  font-family: JosefinSans-Bold;
  text-transform: uppercase;
}

.nv-language-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  cursor: pointer;
}

/* Trang CV end */
/* sửa web start */
.nv-page-content-extra-item-image-gioithieu-img-nho {
  position: absolute;
  z-index: 5;
  bottom: -5%;
  right: 0;
}

.nv-page-content-extra-item-image-gioithieu-img-nho .nv-page-content-extra-item-image {
  width: 250px;
  height: 250px;
  transform: rotate(210deg);
}

.nv-page-content-extra-item-image-gioithieu-img-nho .nv-page-content-extra-item-image .nv-page-content-extra-item-line::before {
  left: -11px;
}

.nv-page-content-extra-item-image-gioithieu-img-nho .nv-page-content-extra-item-image img {
  transform: translateX(0px) rotate(-210deg);
}

.nv-gioi-thieu-section-content-item-title {
  font-size: clamp(1.3rem, 1.1547rem + 0.7044vw, 2rem);
  font-family: var(--title-font);
  color: var(--second-text-color);
  text-transform: uppercase;
}

.nv-page-content-extra-item-image-gioithieu-img-nho img {
  transition: all 2s linear;
}

.nv-page-content-extra-item-image-gioithieu-img-nho img:hover {
  /* transform: scale(1.15) rotate(-210deg); */
  transition: all 2s linear;
}

.nv-gioi-thieu-section {
  position: relative;
}

.nv-gioi-thieu-section .container {
  position: relative;
  z-index: 5;
}

.nv-gioi-thieu-section-bg {
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.nv-gioi-thieu-section-bg-white {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(180deg, #fff, transparent, rgba(255, 255, 255, 1)) 0 0 no-repeat padding-box;
}

.nv-gioi-thieu-section-content-btn .nv-slider-item-content-box-btn-view-i-btn {
  background: var(--text-color);
  color: var(--background-color);
}

.nv-gioi-thieu-section-content-btn .nv-slider-item-content-box-btn-view-text {
  color: var(--text-color);
}

@keyframes to-dan-slow {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.2);
  }
}

.nv-gioi-thieu-section-content-item-content {
  font-family: Montserrat-Medium;
  font-size: clamp(0.9rem, 0.8792rem + 0.1006vw, 1rem);
}

.nv-page-content-extra-item-image-a {
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  overflow: hidden;
  transform: translateX(30px);
  cursor: pointer;
  z-index: 3;
  position: relative;
  border-radius: 50%;
}

.image-extra-ml {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page .nv-page-content-extra-item-image-a {
  width: 100%;
  height: 100%;
  transform: none;
  border-radius: 0;
  clip-path: polygon(20% 0, 80% 0, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
}

.page .nv-page-content-extra-item-image img {
  border-radius: 0;
}

.chung-nhan-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-cau-chuyen-nv-bg {
  position: absolute;
  z-index: 1;
  width: 48%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.nv-header::after {
  display: none;
}

/* sửa web end */
.image-box-vh {
  overflow: hidden;
}

.box-image:hover::after {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.box-image::after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.gia-tri-tam-nhin-content-subitem table {
  max-width: 100%;
}

/* tin tức detail start */
.vh-noi-dung-2 {
  font-size: 1rem;
  font-family: var(--normal-font);
}

.vh-noi-dung-2 img {
  max-width: 100% !important;
  height: auto !important;
  max-height: 500px !important;
}

.tieu-de-van-hiep:hover {
  color: var(--main-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;
}

/* tin tức detail end */
.vanhiep-bang table tbody tr td:nth-child(1) {
  max-width: 100px;
  /* border-bottom: 1px solid #adadad; */
}

.vanhiep-bang table tbody tr td:nth-child(1) p {
  margin: 0;
  text-align: center !important;
  margin-left: 0 !important;
}

.gia-tri-tam-nhin-content-item-col {
  padding-left: 0;
  padding-right: 0;
}

.vanhiep-bang table tbody tr td:nth-child(2) p {
  margin-left: 25px !important;
}


/* sửa web start */
.nv-slider-news-top-navigation-prev {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.nv-slider-news-top-navigation-next {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}