.hvr-underline-from-left::before {
  height: 1px;
  background-color: var(--text-color);
}
/* header start */
.vs-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.vs-header-top {
  background-color: var(--background-color);
}
.vs-header-top-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 35px;
  height: 35px;
  min-width: 35px;
  min-height: 35px;
  position: relative;
  background: linear-gradient(
    50deg,
    rgba(13, 114, 68, 1),
    rgba(241, 91, 41, 1)
  );
  z-index: 1;
  transition: color 0.3s ease, background 0.3s ease;
  -webkit-transition: color 0.3s ease, background 0.3s ease;
  -moz-transition: color 0.3s ease, background 0.3s ease;
  -ms-transition: color 0.3s ease, background 0.3s ease;
  -o-transition: color 0.3s ease, background 0.3s ease;
}
.vs-header-top-icon::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 50%;
  left: 50%;
  width: calc(90%);
  height: calc(90%);
  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%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.vs-header-top-icon i {
  font-size: 0.9rem;
  color: var(--text-color);
}
.vs-header-top-icon span {
  font-size: 0.8rem;
  color: var(--text-color);
}
.vs-header-top-title {
  color: var(--text-color);
  font-size: clamp(0.8rem, 0.1881rem + 0.9552vw, 1rem);
}
.vs-header-top-title:hover {
  color: var(--text-color);
}
.vs-header-top-mxh-li:hover .vs-header-top-icon {
  color: var(--text-color);
  background: linear-gradient(
    -50deg,
    rgba(13, 114, 68, 1),
    rgba(241, 91, 41, 1)
  );
  transition: color 0.3s ease, background 0.3s ease;
  -webkit-transition: color 0.3s ease, background 0.3s ease;
  -moz-transition: color 0.3s ease, background 0.3s ease;
  -ms-transition: color 0.3s ease, background 0.3s ease;
  -o-transition: color 0.3s ease, background 0.3s ease;
}
.vs-header-top-box {
  max-width: 1000px;
  margin-left: auto;
}

.vs-header-bottom {
  background-color: var(--main-color);
}
.menu_li_level_1 {
  position: relative;
}
.menu_a_level_1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--background-color);
  font-family: HY-Arctes;
  font-size: clamp(0.9rem, -0.0179rem + 1.4328vw, 1.2rem);
  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;
}
.sub-menu {
  position: absolute;
  top: 123%;
  left: 0;
  width: max-content;
  min-width: 220px;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--main-color);
  border: none;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  filter: blur(10px);
  -webkit-filter: blur(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;
}
.menu_li_level_1:hover .sub-menu {
  top: 103%;
  filter: blur(0px);
  -webkit-filter: blur(0px);
  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_a_level_2 {
  display: flex;
  padding: 7px 15px;
  color: var(--background-color);
  font-family: HY-Arctes;
  font-size: clamp(0.9rem, -0.0179rem + 1.4328vw, 1.2rem);
  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;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.menu_a_level_2:hover {
  background-color: var(--second-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;
  border-color: var(--second-main-color);
}
.menu_li_level_2:last-of-type .menu_a_level_2 {
  border-bottom: none;
}
.menu_li_level_1.active .menu_a_level_1 {
  background-color: var(--second-main-color);
  color: var(--background-color);
}
.vs-header-bottom-logo {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  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;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
  -webkit-filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
}
.vs-logo-img {
  max-width: 110px;
  height: auto;
  transform: translateY(-20%);
  -webkit-transform: translateY(-20%);
  -moz-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  -o-transform: translateY(-20%);
  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;
}
.btn-search {
  color: var(--background-color);
  font-size: clamp(0.9rem, -0.0179rem + 1.4328vw, 1.2rem);
  cursor: pointer;
}
.flag-icon {
  max-width: 26px;
}
.menu_li_level_1 .dropdown-menu,
.pnvn-menu-mobile .dropdown-menu {
  background-color: var(--main-color);
  color: var(--background-color);
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  overflow: hidden;
}
.menu_li_level_1 .dropdown a,
.pnvn-menu-mobile .dropdown a {
  font-family: var(--title-font);
  color: var(--background-color);
  font-size: clamp(0.9rem, -0.0179rem + 1.4328vw, 1.2rem);
}
.menu_li_level_1 .dropdown-item,
.pnvn-menu-mobile .dropdown-item {
  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;
}
.menu_li_level_1 .dropdown-item:hover,
.pnvn-menu-mobile .dropdown-item:hover {
  background-color: var(--second-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;
}
.menu_li_level_1:hover .menu_a_level_1 {
  background-color: var(--second-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;
}
.vs-header {
  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;
}
.vs-header.active {
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  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;
}
.vs-header.active .vs-logo-img {
  max-width: 50px;
  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;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
}
.vs-header.active .vs-header-bottom-logo {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  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;
}
/* header end */

/* modal tìm kiếm start */
/* Search Button Styles */
.hy-form-tim-kiem-button {
  background: transparent;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hy-form-tim-kiem-button i {
  font-size: 20px;
  color: #000;
}

/* Modal Styles */
.hy-form-tim-kiem-modal {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  background: var(--background-color);
  z-index: 5000;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  overflow: hidden;
}

.hy-form-tim-kiem-modal.show {
  top: 20px;
  opacity: 1;
}

.hy-form-tim-kiem-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hy-form-tim-kiem-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Search Header */
.hy-form-tim-kiem-header {
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.hy-form-tim-kiem-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hy-form-tim-kiem-close:hover {
  background: #f5f5f5;
}

.hy-form-tim-kiem-close i {
  font-size: 16px;
  color: #666;
}

/* Search Form */
.hy-form-tim-kiem-form {
  position: relative;
}

.hy-form-tim-kiem-input {
  width: 100%;
  padding: 12px 50px;
  font-size: 16px;
  border: none;
  outline: none;
  background: transparent;
}

.hy-form-tim-kiem-input::placeholder {
  color: #999;
  font-weight: 300;
}

.hy-form-tim-kiem-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 18px;
}

/* Search Results */
.hy-form-tim-kiem-results {
  max-height: 400px;
  overflow-y: auto;
  padding: 20px 0;
  background: #fafafa;
  scrollbar-width: thin;
}

.hy-form-tim-kiem-result-item {
  padding: 12px 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hy-form-tim-kiem-result-item:hover {
  background: #f0f0f0;
}

.hy-form-tim-kiem-result-image {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 4px;
  margin-right: 15px;
  object-fit: cover;
}

.hy-form-tim-kiem-result-content {
  flex: auto;
  max-width: 100%;
  overflow: hidden;
}

.hy-form-tim-kiem-result-title {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 4px;
  font-family: lato-b;
}

.hy-form-tim-kiem-result-category {
  font-size: 12px;
  color: #999;
}

/* Scrollbar Styles */
.hy-form-tim-kiem-results::-webkit-scrollbar {
  width: 6px;
}

.hy-form-tim-kiem-results::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.hy-form-tim-kiem-results::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.searchTrigger {
  cursor: pointer;
}
.hy-blur-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  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;
}
.hy-blur-box.active {
  opacity: 1;
  pointer-events: all;
  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;
}
.hy-form-tim-kiem-result-price {
  color: var(--main-color);
  font-family: var(--title-font);
}
/* modal tìm kiếm end */

/* menu mobile start */

.mp-menu-mobile-bottom-left i {
  font-size: 1.5rem;
}
.logo-cong-ty-mobile-img {
  max-width: 60px;
  height: auto;
  margin: 0 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;
}
.mypham-offcanvas-adversie-image {
  overflow: hidden;
}
.mypham-offcanvas-adversie-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mypham-offcanvas-adversie-box {
  background: var(--main-color);
}
.mypham-offcanvas-adversie-content {
  color: var(--background-color);
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
}
.mypham-offcanvas-adversie-content-link {
  text-decoration: underline;
  font-family: var(--title-font);
  text-transform: uppercase;
}
.offcanvas-end.myphamOffCanvas {
  width: 100%;
}
.myphamOffCanvas .offcanvas-header,
.mypham-offcanvas-adversie {
  border-bottom: 1px solid rgb(216, 216, 216);
}
.myphamOffCanvas .offcanvas-body {
  padding: 0;
}
.menu_mobile_li_1_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu_mobile_a_1 {
  color: var(--text-color);
  /* font-family: var(--title-font); */
  font-family: lato-b;
  font-size: clamp(0.9rem, 0.7571rem + 0.7143vw, 1.1rem);
}
.menu_mobile_a_1:hover {
  color: var(--text-color);
}
.menu_mobile_li_1_content_box_icon_1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 15px;
  background-color: var(--text-color);
  transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  -o-transform: translate(-50%, -50%) rotate(90deg);
  z-index: 2;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.menu_mobile_li_1_content_box_icon_2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background-color: var(--text-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%);
  z-index: 1;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.menu_mobile_a_1.collapsed .menu_mobile_li_1_content_box_icon_1 {
  transform: translate(-50%, -50%) rotate(0deg);
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  -moz-transform: translate(-50%, -50%) rotate(0deg);
  -ms-transform: translate(-50%, -50%) rotate(0deg);
  -o-transform: translate(-50%, -50%) rotate(0deg);
}
.menu_mobile_li_1 {
  border-bottom: 1px solid rgb(216, 216, 216);
}
.menu_mobile_level_2_collapse {
  background-color: rgb(242, 242, 242);
}
.menu_mobile_level_2_collapse .card {
  background: transparent;
}
.menu_mobile_a_level_2 {
  color: var(--text-color);
  font-family: var(--title-font);
  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;
}
.menu_mobile_a_level_2.main {
  color: var(--text-color);
  font-family: lato-b;
  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;
  text-transform: uppercase;
}
.menu_mobile_a_level_2:hover {
  color: var(--text-color);
}
.menu_mobile_li_level_2.active .menu_mobile_a_level_2 {
  color: var(--main-color);
  font-family: lato-b;
}
.mp-quang-cao-menu-mobile-box .nav-tabs .nav-link {
  background: var(--background-color);
  color: var(--text-color);
  font-size: clamp(0.66rem, 0.4886rem + 0.8571vw, 0.9rem);
}
.mp-quang-cao-menu-mobile-box .nav-tabs .nav-link.active,
.mp-quang-cao-menu-mobile-box .tab-content {
  background-color: rgb(242, 242, 242);
  border-bottom: none !important;
}
.mp-quang-cao-menu-mobile-box .nav-item {
  width: 50%;
}
.mp-quang-cao-menu-mobile-box-content-item-image {
  overflow: hidden;
}
.mp-quang-cao-menu-mobile-box-content-item-image img,
.mp-quang-cao-menu-mobile-box-content-item-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-quang-cao-menu-mobile-box-content-item-link {
  background-color: var(--background-color);
  color: var(--text-color);
  width: max-content;
}
.mp-quang-cao-menu-mobile-box-content-item-link span {
  text-decoration: underline;
  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;
}
.mp-quang-cao-menu-mobile-box-content-item-link:hover span {
  color: var(--text-color);
}
.mp-tac-gia-header-mobile-avatar img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.chu-ky-tac-gia-img {
  max-width: 100px;
  height: auto;
}
.mp-tac-gia-header-mobile {
  background-color: #1f1f1f;
  color: var(--background-color);
}
.mp-menu-footer-mobile {
  background-color: var(--main-color);
}
.mp_menu_footer_mobile_a {
  color: var(--background-color);
  font-family: var(--title-font);
}
.mp_menu_footer_mobile_a:hover {
  color: var(--background-color);
}
.mp_menu_footer_mobile_a .hvr-underline-from-left::before {
  background-color: var(--background-color);
}
.flag-icon {
  max-width: 32px;
}
.myphamOffCanvas .offcanvas-header {
  padding: 1.5rem 1rem;
}
.pnvn-menu-mobile {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: var(--background-color);
}
.pnvn-menu-mobile.active {
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
  -moz-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
}
.utility-icons i,
.mp-menu-mobile-bottom-left i {
  color: var(--text-color);
  font-size: 1.6rem;
}
.pnvn-menu-mobile.active .logo-cong-ty-mobile-img {
  max-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 */

/* slider start */
.mp-slider-swiper-item {
  position: relative;
}
.mp-slider-swiper-item-image {
  overflow: hidden;
  --bs-aspect-ratio: calc(9 / 24 * 100%);
}
.mp-slider-swiper-item-image a,
.mp-slider-swiper-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(93%);
  -webkit-filter: brightness(93%);
}
.mp-slider-swiper-item-content {
  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%);
  max-width: 80%;
}
.mp-slider-swiper-item-content-des > * {
  color: var(--background-color);
  /* font-size: clamp(1.5rem, 0.7308rem + 3.8462vw, 4rem); */
  text-shadow: 6px 5px 2px rgba(13, 114, 68, 0.8);
  font-size: clamp(1.2rem, 0.3385rem + 4.3077vw, 4rem);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -webkit-text-stroke: 2px #0d7244;
  font-family: Krub-Bold;
  text-transform: uppercase;
}
.mp-slider-swiper .swiper-slide-active .mp-slider-swiper-item-content-des > *,
.mp-slider-swiper .swiper-slide-active .mp-slider-swiper-item-content-link {
  animation: slide-visible 1s ease forwards;
  -webkit-animation: slide-visible 1s ease forwards;
  animation-delay: 0.5s;
}
@keyframes slide-visible {
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
}
.mp-slider-swiper-item-content-link {
  background-color: var(--main-color);
  color: var(--background-color);
  font-size: clamp(0.8rem, 0.6769rem + 0.6154vw, 1.2rem);
  width: max-content;
  text-align: center;
  font-family: Krub-Bold;
  text-transform: uppercase;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  opacity: 0;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  filter: blur(10px);
  -webkit-filter: blur(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;
}
.mp-slider-swiper-item-content-link:hover {
  background-color: var(--second-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;
}
/* slider end */

/* trang chủ start */

/* tại sao chọn start */
.vs-title {
  font-family: Krub-Bold;
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  text-transform: uppercase;
  color: var(--main-color);
}
.vs-tai-sao-chon-content-image img {
  max-width: 100%;
  height: auto;
}
.vs-tai-sao-chon-content-item-title {
  font-family: Krub-Bold;
  text-transform: uppercase;
  color: var(--text-color);
  font-size: clamp(1.05rem, 1.0038rem + 0.2308vw, 1.2rem);
}
.index .vs-tai-sao-chon-noi-dung {
  opacity: 0;
}
/* tại sao chọn end */

/* dịch vụ của chúng tôi start */
.vs-service-item-image {
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.vs-service-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.vs-service-item-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  background: rgba(13, 114, 68, 0.8);
  font-family: HY-Arctes;
  color: var(--background-color);
  font-size: clamp(1.2rem, 1.1077rem + 0.4615vw, 1.5rem);
  text-transform: capitalize;
  transition: background 0.3s ease, color 0.3s ease;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  -moz-transition: background 0.3s ease, color 0.3s ease;
  -ms-transition: background 0.3s ease, color 0.3s ease;
  -o-transition: background 0.3s ease, color 0.3s ease;
}
.vs-service-item:hover .vs-service-item-image img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.vs-service-item:hover .vs-service-item-content {
  background-color: var(--second-main-color);
  color: var(--background-color);
  transition: background 0.3s ease, color 0.3s ease;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  -moz-transition: background 0.3s ease, color 0.3s ease;
  -ms-transition: background 0.3s ease, color 0.3s ease;
  -o-transition: background 0.3s ease, color 0.3s ease;
}
.vs-pagination-box
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  transition: width 0.3s ease, background 0.3s ease;
  -webkit-transition: width 0.3s ease, background 0.3s ease;
  -moz-transition: width 0.3s ease, background 0.3s ease;
  -ms-transition: width 0.3s ease, background 0.3s ease;
  -o-transition: width 0.3s ease, background 0.3s ease;
}
.vs-pagination-box
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet-active.swiper-pagination-bullet {
  width: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: var(--main-color);
  transition: width 0.3s ease, background 0.3s ease;
  -webkit-transition: width 0.3s ease, background 0.3s ease;
  -moz-transition: width 0.3s ease, background 0.3s ease;
  -ms-transition: width 0.3s ease, background 0.3s ease;
  -o-transition: width 0.3s ease, background 0.3s ease;
}
.vs-dich-vu-cua-chung-toi-wrapper {
  background: #ededed;
  padding: 100px 0;
  padding-bottom: 200px;
}
/* dịch vụ của chúng tôi end */

/* danh mục nổi bật start */
.vs-danh-muc-noi-bat-item-content .vs-service-item-content {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-color);
}
.vs-danh-muc-noi-bat-box {
  background-color: var(--background-color);
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  /* transform: translateY(-200px);
  -webkit-transform: translateY(-200px);
  -moz-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  -o-transform: translateY(-200px); */
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-top: -200px;
}
.vs-danh-muc-noi-bat-item-content .vs-service-item-content {
  font-size: clamp(1rem, 0.8769rem + 0.6154vw, 1.4rem);
}
/* danh mục nổi bật end */

/* dịch vụ của chúng tôi start */
.vs-quy-trinh-dich-vu-item-icon-box {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px dashed var(--second-main-color);
}
.vs-quy-trinh-dich-vu-item-icon-box img {
  width: 57px;
  height: auto;
}
.vs-quy-trinh-dich-vu-item-title {
  font-family: Krub-Bold;
  color: var(--text-color);
  font-size: clamp(1.1rem, 1.0692rem + 0.1538vw, 1.2rem);
}
.vs-quy-trinh-dich-vu-item-des {
  font-family: var(--title-font);
  font-size: clamp(1.05rem, 1.0346rem + 0.0769vw, 1.1rem);
}
.vs-quy-trinh-dich-vu-item-content {
  font-family: var(--normal-font);
  color: var(--text-color);
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
}
.vs-quy-trinh-dich-vu-content-row {
  position: relative;
  z-index: 2;
}
.vs-quy-trinh-dich-vu-item-icon-box {
  background: var(--background-color);
}
.line-mui-ten {
  position: absolute;
  left: 0;
  top: 20%;
  z-index: 1;
}
.vs-quy-trinh-dich-vu-content-row .vs-quy-trinh-dich-vu-item:nth-child(2) {
  padding-top: 7%;
}
.vs-quy-trinh-dich-vu-content-row .vs-quy-trinh-dich-vu-item:nth-child(3) {
  padding-top: 3%;
}
.vs-title {
  z-index: 3;
}
.bg-dich-vu {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  height: auto;
  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: 1;
  opacity: 0.09;
  filter: grayscale(0.5);
  -webkit-filter: grayscale(0.5);
}
/* dịch vụ của chúng tôi end */

/* sẵn sàng bay cùng start */
.vs-san-sang-bay-box {
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
  background: var(--background-color);
}
.vs-san-sang-bay-wrapper {
  z-index: 5;
}
.nhan-vat-img {
  max-width: 100%;
}
.vs-san-sang-bay-box-content-subitem-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  pointer-events: none;
  color: var(--text-color);
}
.vs-san-sang-bay-box-content-subitem-title-box {
  font-family: Krub-Bold;
  font-size: clamp(1.2rem, 1.1077rem + 0.4615vw, 1.5rem);
}
.vs-san-sang-bay-box-content-subitem-des {
  font-family: var(--title-font);
  font-size: clamp(0.9rem, 0.8385rem + 0.3077vw, 1.1rem);
}
.vs-san-sang-bay-box-content-item {
  font-family: Krub-Bold;
  color: var(--main-color);
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
}
.vs-san-sang-bay-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  object-fit: cover;
}
.vs-san-sang-bay-box-line {
  z-index: 2;
  width: 100%;
  height: 5px;
  background-color: var(--second-main-color);
  transform-origin: center;
}
.vs-san-sang-bay-box-content {
  z-index: 2;
}
/* sẵn sàng bay cùng end */

/* feedback start */
.vs-khach-hang-noi-gi-ve-chung-toi-wrapper {
  background: rgba(13, 114, 68, 0.8);
  padding-top: 200px;
  padding-bottom: 0px;
  margin-top: -190px;
  z-index: 1;
}
.vs-khach-hang-noi-gi-ve-chung-toi-wrapper .container {
  position: relative;
  z-index: 5;
}
.anh-nen-fb-img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.07;
  pointer-events: none;
}
.vs-navigate {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--background-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 50px;
  height: 50px;
  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;
}
.vs-navigate.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
  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;
}
.vs-navigate:hover {
  opacity: 0.85;
  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;
}
.vs-navigate img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.vs-khach-hang-noi-gi-ve-chung-toi-item-title {
  font-family: Krub-Bold;
  color: var(--background-color);
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
}
.vs-khach-hang-noi-gi-ve-chung-toi-item-des {
  color: var(--background-color);
  font-family: var(--normal-font);
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
}
.vs-feedback-avatar-box {
  width: 120px;
  position: relative;
  z-index: 3;
  margin-top: -30px;
}
.vs-feedback-avatar-image {
  max-width: 100%;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 3px solid var(--second-main-color);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.vs-feedback-avatar-image a,
.vs-feedback-avatar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vs-feedback-item {
  background-color: var(--background-color);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}
.vs-feedback-customer-name {
  font-family: Krub-Bold;
  color: var(--text-color);
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
}
.vs-feedback-customer-content {
  font-family: var(--normal-font);
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  text-align: justify;
  color: #666;
}
.vs-feedback-item-line {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: var(--second-main-color);
  z-index: 1;
}
.vs-khach-hang-noi-gi-ve-chung-toi-box {
  max-width: 1500px;
  margin: 0 auto;
}
/* feedback end  */

/* đăng ký tư vấn start */
.vs-dang-ky-tu-van-content {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}
.vs-dang-ky-tu-van-item-image {
  overflow: hidden;
  --bs-aspect-ratio: 130%;
  min-height: 100%;
}
.vs-dang-ky-tu-van-item-image a,
.vs-dang-ky-tu-van-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn-dang-ky-tu-van {
  border: none;
  background: linear-gradient(220deg, #00b965 6.75%, #0d7244 86.49%);
  color: var(--background-color);
  font-family: Krub-Bold;
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
  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;
  min-width: 150px;
  text-align: center;
}
.btn-dang-ky-tu-van:hover {
  background: var(--second-main-color);
  color: var(--background-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;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.vs-dang-ky-tu-van-form-item .form-control {
  height: 50px;
  border: none;
  background: #f8f8f8;
}
.vs-dang-ky-tu-van-form-item textarea.form-control {
  height: 150px;
  resize: none;
}
.anh-nen-tu-van-img {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}
.form-tu-van-index {
  z-index: 3;
}
/* đăng ký tư vấn end */

/* đối tác start */
.vs-partner-item-image {
  overflow: hidden;
}
.vs-partner-item-image a,
.vs-partner-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vs-partner-item {
  background-color: var(--background-color);
  border: 2px solid var(--main-color);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 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;
}
.vs-partner-item:hover {
  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;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;
}
.vs-doi-tac-wrapper .vs-title {
  color: var(--text-color);
}
/* đối tác end */

/* cẩm nang start */
.vs-des {
  color: #666;
  font-family: var(--normal-font);
  font-size: clamp(0.95rem, 0.9038rem + 0.2308vw, 1.1rem);
  max-width: 800px;
  margin: 0 auto;
}
.vs-cam-nang-item-image {
  overflow: hidden;
}
.vs-cam-nang-item-image a,
.vs-cam-nang-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.vs-cam-nang-item-image:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.vs-cam-nang-item {
  background-color: #f3f3f3;
}
.vs-cam-nang-item-title a {
  color: var(--text-color);
  font-family: Krub-Bold;
  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-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
}
.vs-cam-nang-item-title a:hover {
  color: var(--second-main-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;
}
.icon-xem-chi-tiet {
  max-width: 10px;
  height: auto;
}
.vs-xem-chi-tiet-icon-box {
  width: 20px;
  height: 20px;
  background-color: var(--second-main-color);
}
.vs-cam-nang-item-xem-chi-tiet-box a span {
  color: var(--text-color);
  font-family: var(--normal-font);
}
.vs-cam-nang-content .vs-navigate {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  z-index: 6;
}
.vs-navigate-cam-nang-prev {
  left: -30px;
}
.vs-navigate-cam-nang-next {
  right: -30px;
}
/* cẩm nang end */

/* trang chủ end */

/* FOOTER START */
.vs-footer {
  position: relative;
  z-index: 1;
  background: #012f1a;
  min-height: 300px;
}
.vs-footer .container {
  position: relative;
  z-index: 5;
}
.vs-footer-bg-big-size-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  mix-blend-mode: soft-light;
  opacity: 0.14;
}
.logo-footer-img {
  max-width: 120px;
  height: auto;
}

.vs-footer-bg-small-size-img {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  mix-blend-mode: hard-light;
  object-fit: cover;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.vs-footer-top-content {
  position: relative;
  z-index: 5;
}
.vs-footer-top-subitem-icon {
  min-width: 55px;
  min-height: 55px;
  /* background-color: var(--background-color); */
  color: var(--orange-color);
  font-size: 2rem;
}
.vs-footer-top-subitem-des {
  color: var(--background-color);
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  font-family: var(--title-font);
}
.vs-footer-top-subitem-label {
  font-family: Krub-Bold;
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  color: var(--background-color);
}
.vs-footer-top-subitem-des {
  max-width: 250px;
}
.vs-footer-title {
  font-family: Krub-Bold;
  color: var(--background-color);
  font-size: clamp(1.1rem, 1.0385rem + 0.3077vw, 1.3rem);
}
.vs-footer-des {
  color: var(--background-color);
  font-family: var(--normal-font);
  font-size: clamp(0.95rem, 0.9346rem + 0.0769vw, 1rem);
}
.vs-footer-li i {
  color: var(--second-main-color);
  font-size: clamp(0.95rem, 0.9346rem + 0.0769vw, 1rem);
}
.vs-footer-li span {
  color: var(--background-color);
}
.vs-footer-li:hover span {
  color: var(--background-color);
}
.vs-footer-li:hover span.hvr-underline-from-left::before {
  background-color: var(--background-color);
}
.btn-gui-nhan-ban-tin {
  border: none;
  background-color: var(--second-main-color);
  color: var(--background-color);
  text-align: center;
  display: flex;
  width: 100%;
  font-family: Krub-Bold;
  text-align: center;
  justify-content: center;
  align-items: center;
  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: capitalize;
}
.vs-nhan-ban-tin-form .form-control {
  height: 50px;
}
.btn-gui-nhan-ban-tin:hover {
  background-color: var(--text-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: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.vs-footer-copyright-box {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--background-color);
  font-size: clamp(0.8rem, 0.7385rem + 0.3077vw, 1rem);
}
.vs-footer-copyright-box a {
  color: var(--background-color);
}
.vs-footer-copyright-box a.hvr-underline-from-left::before {
  background-color: var(--background-color);
}
.vs-footer-copyright-box a:hover {
  color: var(--background-color);
}
/* FOOTER END */

/* trang giới thiệu start */
:root {
  /* Light mode colors */
  --primary: #0d7244;
  --primary-dark: #085332;
  --primary-light: #14a867;
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --background: #ffffff;
  --background-secondary: #f7fafc;
  --border: #e2e8f0;
  --shadow: rgba(0, 0, 0, 0.1);
}
/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background-color: var(--background-secondary);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--background);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
}

.service-card {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  /* padding: 2rem; */
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--shadow);
}

/* .service-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
} */
.rating i {
  font-size: 0.8rem;
}
.service-card h3 {
  margin-bottom: 1rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--background-secondary);
}

.about-content {
  padding: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--background);
  border-radius: 1rem;
  box-shadow: 0 4px 6px var(--shadow);
}

.stat-item h3 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Process Section */
.process {
  padding: 5rem 0;
  background-color: var(--background);
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 600;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--background-secondary);
}

.contact-info {
  padding: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.info-item i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.contact-form .form-control {
  background-color: var(--background);
  border: 1px solid var(--border);
  padding: 0.75rem;
  margin-bottom: 1rem;
}
/* Responsive */
@media (max-width: 991.98px) {
  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 5rem 0 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .service-card {
    margin-bottom: 1.5rem;
  }

  .process-step {
    margin-bottom: 2rem;
  }
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
/* trang giới thiệu end */

/* trang cố định start */
.vs-trang-co-dinh-box {
  max-width: 1000px;
  margin: 0 auto;
}
/* trang cố định end */

/* trang tin tức start */
:root {
  --primary: #0d7244;
  --primary-dark: #085332;
  --primary-light: #14a867;
  --secondary: #f26529;
  --secondary-light: #ff8f5d;
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --background: #ffffff;
  --background-secondary: #f7fafc;
  --border: #e2e8f0;
  --shadow: rgba(0, 0, 0, 0.1);
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

[data-theme="dark"] {
  --primary: #14a867;
  --primary-dark: #0d7244;
  --primary-light: #1ac17a;
  --secondary: #ff8f5d;
  --secondary-light: #ffb090;
  --text-primary: #e2e8f0;
  --text-secondary: #a0aec0;
  --background: #1a202c;
  --background-secondary: #2d3748;
  --border: #4a5568;
  --shadow: rgba(0, 0, 0, 0.3);
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Page Header */
.page-header {
  background-color: var(--background-secondary);
  padding: 120px 0 60px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  opacity: 0.1;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  position: relative;
}

/* card item start */
.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Badge */
.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, #f26529, #ff8f5d);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(242, 101, 41, 0.2);
}

/* Image Section */
.card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  /* padding: 2rem 1.5rem 1.5rem; */
}

.overlay-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.category i {
  font-size: 0.875rem;
}

.rating {
  color: #ffd700;
  font-size: 0.875rem;
}

.rating span {
  color: white;
  margin-left: 0.5rem;
}

/* Content Section */
.card-content {
  /* padding: 1.5rem; */
}

.content-header {
  display: flex;
  justify-content: space-between;
    align-items: center;
  /* margin-bottom: 1rem; */
}

.content-header h3 {
  font-size: clamp(1rem, 0.9231rem + 0.3846vw, 1.25rem);
  /* font-weight: 600; */
  color: #2d3748;
  margin: 0;
  font-family: Krub-Bold;
  max-width: 225px;
}

.price-range {
  text-align: right;
}

.price-range span {
  display: block;
  font-size: 0.75rem;
  color: #718096;
}

.price-range strong {
  color: #0d7244;
  font-size: 1.125rem;
  font-weight: 600;
}

.card-content .vs-item-new-des {
  color: #4a5568;
  font-size: 0.875rem;
  line-height: 1.5;
  /* margin-bottom: 1.5rem; */
}

/* Features */
.card-features {
  /* display: grid; */
  /* grid-template-columns: 1fr 1fr; */
  /* gap: 1rem; */
  /* margin-bottom: 1.5rem; */
  /* padding: 1rem; */
  background: #f7fafc;
  border-radius: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-item i {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #0d7244;
  border-radius: 8px;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(13, 114, 68, 0.1);
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text small {
  font-size: clamp(0.65rem, 0.344rem + 0.4776vw, 0.75rem);
  color: #718096;
}

.feature-text span {
  font-size: clamp(0.75rem, 0.444rem + 0.4776vw, 0.85rem);
  font-weight: 500;
  color: #2d3748;
}

/* Actions */
.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.btn-details {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #0d7244;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-details:hover {
  background: #085332;
  color: white;
}

.btn-details i {
  transition: transform 0.3s ease;
}

.btn-details:hover i {
  transform: translateX(4px);
}

.btn-favorite {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #f7fafc;
  color: #718096;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-favorite:hover {
  background: #fee2e2;
  color: #dc2626;
}

.btn-favorite i {
  font-size: 1.125rem;
}

/* Dark Mode */
[data-theme="dark"] .service-card {
  background: rgba(26, 32, 44, 0.95);
  border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .content-header h3 {
  color: #e2e8f0;
}

[data-theme="dark"] .card-content p {
  color: #a0aec0;
}

[data-theme="dark"] .price-range span {
  color: #a0aec0;
}

[data-theme="dark"] .price-range strong {
  color: #14a867;
}

[data-theme="dark"] .card-features {
  background: rgba(45, 55, 72, 0.5);
}

[data-theme="dark"] .feature-item i {
  background: #2d3748;
  color: #14a867;
}

[data-theme="dark"] .feature-text small {
  color: #a0aec0;
}

[data-theme="dark"] .feature-text span {
  color: #e2e8f0;
}

[data-theme="dark"] .btn-favorite {
  background: #2d3748;
  color: #a0aec0;
}

[data-theme="dark"] .btn-favorite:hover {
  background: #553c3c;
  color: #f87171;
}

/* Hover Animations */
@keyframes pulseScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.card-badge {
  animation: pulseScale 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .price-range {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
/* card item end */

/* Loading Animation */
/* .loading {
  position: relative;
  min-height: 200px;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
} */

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* trang tin tức end */

/* trang tin tức chi tiết start */
:root {
  --primary: #0d7244;
  --primary-dark: #085332;
  --primary-light: #14a867;
  --secondary: #f26529;
  --secondary-light: #ff8f5d;
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --background: #ffffff;
  --background-secondary: #f7fafc;
  --border: #e2e8f0;
  --shadow: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
  --primary: #14a867;
  --primary-dark: #0d7244;
  --primary-light: #1ac17a;
  --secondary: #ff8f5d;
  --secondary-light: #ffb090;
  --text-primary: #e2e8f0;
  --text-secondary: #a0aec0;
  --background: #1a202c;
  --background-secondary: #2d3748;
  --border: #4a5568;
  --shadow: rgba(0, 0, 0, 0.3);
}

/* Main Styles */
.vs-dich-vu-detail-page-main {
  padding: 2rem 0;
  background-color: var(--background);
}

/* Hero Section */
.vs-dich-vu-detail-page-hero {
  /* margin-bottom: 2rem; */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  padding: 0;
}

.vs-dich-vu-detail-page-slider {
  width: 100%;
  border-radius: 20px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

/* Overview Section */

.vs-dich-vu-detail-page-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.vs-dich-vu-detail-page-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.vs-dich-vu-detail-page-meta i {
  color: var(--primary);
}

.vs-dich-vu-detail-page-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Requirements Section */
.vs-dich-vu-detail-page-requirements {
  /* margin-bottom: 3rem; */
  padding: 0;
}

.requirement-item {
  background: var(--background-secondary);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.requirement-item:hover {
  transform: translateY(-5px);
}

.requirement-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.requirement-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.requirement-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Process Timeline */
.process-timeline {
  position: relative;
  margin: 2rem 0;
  padding-left: 2rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-point {
  position: absolute;
  left: -2.4rem;
  width: 1rem;
  height: 1rem;
  background: var(--primary);
  border: 3px solid var(--background);
  border-radius: 50%;
}

.timeline-content {
  background: var(--background-secondary);
  padding: 1.5rem;
  border-radius: 15px;
  margin-left: 1rem;
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-secondary);
  margin: 0;
}

/* FAQs Section */
.vs-dich-vu-detail-page-faqs {
  margin-bottom: 3rem;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.accordion-button {
  background: var(--background);
  color: var(--text-primary);
  padding: 1.25rem;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: white;
}

.accordion-body {
  background: var(--background-secondary);
  color: var(--text-secondary);
  padding: 1.25rem;
}

/* Reviews Section */
.review-item {
  background: var(--background-secondary);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.review-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.review-rating {
  color: #ffd700;
  margin: 0.25rem 0;
}

.review-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.review-content {
  color: var(--text-secondary);
  margin: 0;
}

/* Sidebar Styles */
.vs-dich-vu-detail-page-sidebar {
  position: sticky;
  top: 70px;
}

.sidebar-card {
  background: var(--background);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px var(--shadow);
}

.sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

/* Quick Info Card */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.info-label {
  color: var(--text-secondary);
}

.info-value {
  font-weight: 600;
  color: var(--primary);
}

.btn-contact,
.btn-download {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-contact {
  background: var(--primary);
  color: white;
}

.btn-contact:hover {
  background: var(--primary-dark);
}

.btn-download {
  background: var(--background-secondary);
  color: var(--text-primary);
}

.btn-download:hover {
  background: var(--border);
}

/* Contact Form */
.form-group {
  margin-bottom: 1rem;
}

.form-control {
  background: var(--background-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.75rem;
  border-radius: 10px;
}

.btn-submit {
  width: 100%;
  padding: 0.75rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: var(--primary-dark);
}

/* Related Services */
.related-service-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.related-service-item:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.related-service-item:last-child {
  border-bottom: none;
}

.related-service-item img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

.related-service-info h4 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.related-service-info p {
  color: var(--primary);
  margin: 0;
  font-weight: 500;
}

/* Support Info */
.support-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.support-item:last-child {
  border-bottom: none;
}

.support-item i {
  width: 40px;
  height: 40px;
  background: var(--background-secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.support-details {
  display: flex;
  flex-direction: column;
}

.support-details span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.support-details a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .vs-dich-vu-detail-page-sidebar {
    position: static;
    margin-top: 2rem;
  }

  .vs-dich-vu-detail-page-slider img {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .vs-dich-vu-detail-page-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .vs-dich-vu-detail-page-overview h1 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .review-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .timeline-content {
    margin-left: 0;
  }
}
.vs-tin-detail-title {
  font-family: Krub-Bold;
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
}
.vs-detail-title {
  font-size: clamp(1.3rem, 1.2077rem + 0.4615vw, 1.6rem);
  font-family: var(--title-font);
}
.vs-dich-vu-visa-anh-detail-image {
  overflow: hidden;
}
.vs-dich-vu-visa-anh-detail-image a,
.vs-dich-vu-visa-anh-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tin-tuc-detail .vs-navigate {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 5;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.vs-navigate-tin-tuc-prev {
  left: 0px;
}
.vs-navigate-tin-tuc-next {
  right: 0px;
}
.yeu-cau-ho-so-icon {
  max-width: 50px;
}
.timeline-content-title {
  font-family: var(--title-font);
  color: var(--text-color);
  font-size: clamp(1.05rem, 1.0038rem + 0.2308vw, 1.2rem);
}
/* trang tin tức chi tiết end */

/* bình luận start */
.btn-nhanxet,
.btn-guibl {
  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;
}
.btn-nhanxet:hover,
.btn-guibl:hover {
  background-color: var(--text-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;
}
.content-nhanxet {
  background-color: transparent;
  width: 100%;
}
.khung-binh-luan-wrapper {
  border: 1px solid #eae9e9;
}
.star.vote-active {
  color: #ffd700;
}
/* bình luận end */

.zalo-text {
  width: 40px;
  height: 40px;
  background: var(--background-secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-family: var(--title-font);
}
.animate-title {
  font-family: Krub-Bold;
  font-size: clamp(2rem, 1.6923rem + 1.5385vw, 3rem);
}
.animate-subtitle {
  max-width: 600px;
  margin: 0 auto;
}

/* trang cẩm nang start */
:root {
  --primary: #0D7244;
  --primary-light: #14A867;
  --secondary: #f26529;
  --secondary-light: #ff8f5d;
  --text: #333333;
  --text-light: #666666;
  --background: #f4f7f6;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --shadow: rgba(0, 0, 0, 0.1);


  --primary-gradient: linear-gradient(135deg, #0D7244, #14A867);
  --secondary-gradient: linear-gradient(135deg, #f26529, #ff8f5d);
  --text-dark: #333333;

  --primary-color: #0D7244;
  --secondary-color: #14A867;
  --accent-color: #f26529;
  --text-dark: #333333;
  --text-light: #666666;

}


.vv-cam-nang-main {
  padding: 40px 0;
}

/* Breadcrumb styles */
.vv-breadcrumb {
  margin-bottom: 30px;
}

.vv-breadcrumb ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 2px 10px var(--shadow);
  overflow: hidden;
  
}

.vv-breadcrumb li {
  position: relative;
  padding: 10px 20px 10px 30px;
}
.breadcrumb-cha {
 text-wrap-mode: nowrap;
}
.vv-breadcrumb li:first-child {
  padding-left: 20px;
}

.vv-breadcrumb li:not(:last-child)::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 12px;
}

.vv-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.vv-breadcrumb a:hover {
  color: var(--secondary);
}

.vv-breadcrumb li:last-child {
  color: var(--text-light);
  padding-left: 17px;
}

/* Title styles */
.vv-cam-nang-title {
  font-size: clamp(2rem, 1.6923rem + 1.5385vw, 3rem);
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  font-family: Krub-Bold;
  text-transform: uppercase;
}

.vv-cam-nang-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Grid styles */
.vv-cam-nang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* Card styles */
.vv-cam-nang-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vv-cam-nang-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow);
}

.vv-cam-nang-card-image {
  position: relative;
  overflow: hidden;
}

.vv-cam-nang-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vv-cam-nang-card:hover .vv-cam-nang-card-image img {
  transform: scale(1.05);
}



.vv-cam-nang-card h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.vv-cam-nang-card h2 a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.vv-cam-nang-card h2 a:hover {
  color: var(--secondary);
}

.vv-cam-nang-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.vv-cam-nang-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
}

.vv-cam-nang-views i,
.vv-cam-nang-date i {
  margin-right: 5px;
  color: var(--primary);
}

/* Pagination styles */
.vv-cam-nang-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vv-cam-nang-pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 20px;
}

.vv-cam-nang-pagination li {
  margin: 0 5px;
}

.vv-cam-nang-pagination a,
.vv-cam-nang-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.vv-cam-nang-pagination a:hover,
.vv-cam-nang-pagination a.active {
  background: var(--primary);
  color: var(--white);
}

.vv-cam-nang-pagination-prev,
.vv-cam-nang-pagination-next {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.vv-cam-nang-pagination-prev:hover,
.vv-cam-nang-pagination-next:hover {
  background: var(--primary-light);
}

.vv-cam-nang-pagination-prev i,
.vv-cam-nang-pagination-next i {
  margin: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .vv-cam-nang-title {
      font-size: 2rem;
  }

  .vv-cam-nang-grid {
      grid-template-columns: 1fr;
  }

  .vv-breadcrumb li {
      padding: 8px 15px 8px 25px;
  }

  .vv-cam-nang-pagination ul {
      margin: 0 10px;
  }

  .vv-cam-nang-pagination a,
  .vv-cam-nang-pagination span {
      width: 35px;
      height: 35px;
      font-size: 0.9rem;
  }

  .vv-cam-nang-pagination-prev,
  .vv-cam-nang-pagination-next {
      padding: 8px 15px;
      font-size: 0.9rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.vv-cam-nang-card {
  animation: fadeIn 0.5s ease-out;
}

/* Accessibility */
.vv-cam-nang-pagination a:focus,
.vv-cam-nang-card h2 a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.vv-cam-nang-card-title a {
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  transition: color .3s ease;
  -webkit-transition: color .3s ease;
  -moz-transition: color .3s ease;
  -ms-transition: color .3s ease;
  -o-transition: color .3s ease;
  font-family: Krub-Bold;
  color: var(--text-color);
}
.vv-cam-nang-card-title a:hover {
  color: var(--secondary);
  transition: color .3s ease;
  -webkit-transition: color .3s ease;
  -moz-transition: color .3s ease;
  -ms-transition: color .3s ease;
  -o-transition: color .3s ease;
}
.vv-cam-nang-pagination .disabled {
  pointer-events: none; /* Không cho click */
  opacity: 0.5; /* Làm mờ */
  cursor: not-allowed; /* Hiển thị dấu không thể bấm */
}

/* trang cẩm nang end */

/* trang cẩm nang chi tiết start */


.vv-article-main {
  padding: 40px 0;
}

/* Breadcrumb styles */
.vv-breadcrumb {
  margin-bottom: 30px;
}

.vv-breadcrumb ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 2px 10px var(--shadow);
  overflow: hidden;
}

.vv-breadcrumb li {
  position: relative;
  padding: 10px 20px 10px 30px;
}

.vv-breadcrumb li:first-child {
  padding-left: 20px;
}

.vv-breadcrumb li:not(:last-child)::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 12px;
}

.vv-breadcrumb a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.vv-breadcrumb a:hover {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vv-breadcrumb li:last-child {
  color: var(--text-light);
}

/* Article container styles */
.vv-article-container {
  display: flex;
  gap: 40px;
}

.vv-article {
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  overflow: hidden;
}

.vv-article-sidebar {
  width: 300px;
}

/* Article styles */
.vv-article-header {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 30px;
  text-align: center;
}

.vv-article-title {
  font-family: var(--title-font);
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  /* margin-bottom: 20px; */
}

.vv-article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
}

.vv-article-meta i {
  margin-right: 5px;
}

.vv-article-featured-image {
  max-height: 400px;
  overflow: hidden;
}

.vv-article-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vv-article-content {
  padding: 30px;
}

.vv-article-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-light);
  border-left: 4px solid;
  border-image: var(--primary-gradient) 1;
  padding-left: 15px;
  margin-bottom: 25px;
}

.vv-article-content h2 {
  font-family: var(--title-font);
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vv-article-content ul,
.vv-article-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.vv-article-tip {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 15px;
  margin: 25px 0;
}

.vv-article-tip h3 {
  color: #14A867;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.vv-article-tip i {
  margin-right: 8px;
}

.vv-article-quote {
  background: var(--secondary-gradient);
  color: var(--white);
  border-radius: 10px;
  padding: 20px;
  margin: 25px 0;
}

.vv-article-quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 10px;
}

.vv-article-quote cite {
  font-size: 0.9rem;
  font-weight: 500;
}

.vv-article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: var(--gray-100);
}

.vv-article-tags a {
  display: inline-block;
  background: var(--white);
  color: var(--text-dark);
  padding: 5px 10px;
  border-radius: 20px;
  margin-right: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.vv-article-tags a:hover {
  background: var(--primary-gradient);
  color: var(--white);
}

.vv-article-share button {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--text-dark);
  margin-left: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vv-article-share button:hover {
  background: var(--secondary-gradient);
  color: var(--white);
}

/* Sidebar styles */
.vv-article-sidebar > div {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px var(--shadow);
}

.vv-sidebar-author {
  text-align: center;
}

.vv-author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.vv-sidebar-author h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.vv-sidebar-author p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.vv-sidebar-toc h3,
.vv-sidebar-related h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vv-sidebar-toc ul,
.vv-sidebar-related ul {
  list-style-type: none;
  padding: 0;
}

.vv-sidebar-toc li,
.vv-sidebar-related li {
  margin-bottom: 10px;
}

.vv-sidebar-toc a,
.vv-sidebar-related a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.vv-sidebar-toc a:hover,
.vv-sidebar-related a:hover {
  color: #14A867;
}

/* Responsive styles */
@media (max-width: 992px) {
  .vv-article-container {
      flex-direction: column;
  }

  .vv-article-sidebar {
      width: 100%;
  }
}

@media (max-width: 768px) {
  .vv-article-header {
      padding: 20px;
  }

  .vv-article-title {
      font-size: 1.8rem;
  }

  .vv-article-meta {
      flex-direction: column;
      align-items: center;
  }

  .vv-article-content {
      padding: 20px;
  }

  .vv-article-footer {
      flex-direction: column;
      gap: 15px;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.vv-article {
  animation: fadeIn 0.5s ease-out;
}

/* Accessibility */
.vv-article-content a:focus,
.vv-article-tags a:focus,
.vv-article-share button:focus,
.vv-sidebar-toc a:focus,
.vv-sidebar-related a:focus {
  outline: 2px solid #14A867;
  outline-offset: 2px;
}
/* trang cẩm nang chi tiết end */


/* trang liên hệ start */



.hd-lien-he-page-main {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.hd-lien-he-page-wave-top,
.hd-lien-he-page-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hd-lien-he-page-wave-top {
  top: 0;
}

.hd-lien-he-page-wave-bottom {
  bottom: 0;
}

.hd-lien-he-page-wave-top svg,
.hd-lien-he-page-wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.hd-lien-he-page-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.hd-lien-he-page-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  margin: 20px auto 0;
}

.hd-lien-he-page-info {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px var(--shadow);
  height: 100%;
}

.hd-lien-he-page-info h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hd-lien-he-page-contact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.hd-lien-he-page-contact-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.hd-lien-he-page-contact-list i {
  margin-right: 15px;
  width: 20px;
  color: var(--secondary-color);
}

.hd-lien-he-page-social {
  margin-top: 30px;
}

.hd-lien-he-page-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  margin-right: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hd-lien-he-page-social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(20, 168, 103, 0.3);
}

.hd-lien-he-page-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px var(--shadow);
}

.hd-lien-he-page-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.hd-lien-he-page-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  width: 0;
  transition: width 0.3s ease;
}

.hd-lien-he-page-progress-step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.hd-lien-he-page-progress-step.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
}

.hd-lien-he-page-form-step {
  display: none;
}

.hd-lien-he-page-form-step.active {
  display: block;
}

.hd-lien-he-page-form-group {
  margin-bottom: 20px;
}

.hd-lien-he-page-form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--text-light);
}

.hd-lien-he-page-form-group input,
.hd-lien-he-page-form-group select,
.hd-lien-he-page-form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hd-lien-he-page-form-group input:focus,
.hd-lien-he-page-form-group select:focus,
.hd-lien-he-page-form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(20, 168, 103, 0.1);
}

.hd-lien-he-page-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}

.hd-lien-he-page-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.hd-lien-he-page-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--gray-200);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hd-lien-he-page-checkbox:hover input ~ .checkmark {
  background-color: var(--gray-300);
}

.hd-lien-he-page-checkbox input:checked ~ .checkmark {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.hd-lien-he-page-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.hd-lien-he-page-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.hd-lien-he-page-checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.hd-lien-he-page-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.hd-lien-he-page-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(20, 168, 103, 0.3);
}

.hd-lien-he-page-btn-prev {
  background: var(--gray-200);
  color: var(--text-dark);
}

.hd-lien-he-page-btn-submit {
  background: linear-gradient(135deg, var(--accent-color), #ff8f5d);
}

@media (max-width: 768px) {
  .hd-lien-he-page-info,
  .hd-lien-he-page-form {
      margin-bottom: 30px;
  }

  .hd-lien-he-page-title {
      font-size: 2rem;
  }

  .hd-lien-he-page-info h2 {
      font-size: 1.5rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hd-lien-he-page-form-step {
  animation: fadeIn 0.5s ease-out;
}

.hd-lien-he-page-wave-top,
.hd-lien-he-page-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: auto;
    z-index: -1;
}

.hd-lien-he-page-wave-top svg,
.hd-lien-he-page-wave-bottom svg {
    width: 100%;
    height: auto;
}
.hd-lien-he-page-contact-list 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;
}
.hd-lien-he-page-contact-list a:hover {
  color: var(--primary-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;
}
.hd-lien-he-page-contact-list a:hover.hvr-underline-from-left::before {
  background-color: var(--primary-color);
}
/* trang liên hệ end */
.vanhiep-title {
  overflow: hidden;
}
#taiSaoChonText {
  display: block; /* Hiển thị dạng block để tránh bị co giãn */
  white-space: pre-wrap; /* Giữ định dạng xuống dòng */
  min-height: 100px; /* Đặt chiều cao tối thiểu */
}
.hq-product-sidebar-title {
  font-family: var(--title-font);
  text-transform: uppercase;
}
/* test hiệu ứng */


.vh-tourist-day-content {
line-height: 1.5;
}
.vh-tourist-day-content p {
  margin-bottom: 0;
}