@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
  --font-size: 16px;
  --background: #ffffff;
  --foreground: oklch(0.145 0 0);
  --card: #ffffff;
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --primary: #1e40af;
  --primary-foreground: #ffffff;
  --primary-background: #d1dbfb;
  --orange:#ff6a00;
  --orange-foreground:#fd7e14;
  --orange-background: #ffe5d0;
  --buttoncolor: #ff6a00;
  --buttoncolor-foreground: #ffffff;
  --accent: #fbbf24;
  --accent-foreground: #1e3a8a;
  --success: #10b981;
  --success-foreground: #ffffff;
  --success-background: #ecfff9;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --radius: 0.625rem;
  --support-start: #fff; /* vàng kim */
  --support-end: #fff; /* cam cháy */
  --support-hover-bg: rgba(255, 177, 129, 0.15); /* nhạt hơn trên hover */
  --support-hover-text-color: #ff6a00; /* mặc định hover chuyển sang hồng */
}

.text-primary {
  color: var(--primary) !important;
}

.text-orange {
  color: var(--orange);
}

.bg-orange {
  background: var(--orange-background);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover {
  background: var(--orange-foreground);
  color: #fff;
}

.btn-outline-orange {
  border: 1px var(--orange) solid;
}
.btn-outline-orange:hover {
  background: var(--orange-foreground);
  color: #fff;
}

.box-success {
  background: var(--success-background);
  border-color: var(--success);
}

.box-primary {
  background: var(--primary-background);
  border-color: var(--primary);
}

body {
  font-size: 16px;
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "GRAD" 0;
}

a {
  text-decoration: none;
}

.font-small {
  font-size: small;
}

header {
  border-bottom: 1px solid #e9ecef;
}
header .header-logo img {
  max-height: 65px;
  width: auto;
}
header .header-nav .nav-link {
  color: #333;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 180ms ease, color 180ms ease, transform 140ms ease;
}
header .header-nav .nav-link:hover, header .header-nav .nav-link:focus, header .header-nav .nav-link.active {
  background-color: rgba(255, 222, 193, 0.35); /* nhẹ cam */
  color: var(--buttoncolor);
  transform: translateY(-2px);
}
header .header-nav .bi-three-dots {
  font-size: 2rem;
}
header .header-nav .dropdown-menu {
  min-width: 250px;
}
header {
  /* Support button styles (Bestprice-like: gold/orange gradient, lively hover) */
}
header .btn-support {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: linear-gradient(90deg, var(--support-start) 0%, var(--support-end) 100%);
  text-decoration: none;
  border-radius: 10px;
  border: 1px #e3e3e3 solid;
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
header .btn-support .bi {
  font-size: 1.5rem;
  color: currentColor;
  background-color: var(--support-hover-bg);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .btn-support:hover, header .btn-support:focus {
  transform: translateY(-3px);
  border-color: var(--support-hover-text-color);
  filter: brightness(1.05) saturate(1.08);
  background-color: var(--support-hover-bg);
  background-image: none;
  color: var(--support-hover-text-color);
  outline: 3px solid rgba(0, 51, 102, 0.08); /* nhấn mạnh viền navy nhẹ */
}
header {
  /* Allow easy override to use navy hover text instead of pink */
}
header .btn-support[data-hover=navy]:hover {
  color: #002b55;
}
header .support-text {
  font-weight: 700;
  color: var(--support-hover-text-color);
  font-size: 1.2rem;
  letter-spacing: 0.2px;
}

/* Hero / carousel styles */
.hero {
  position: relative;
}

.hero .carousel-item img {
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
}

.rotate-180 {
  transform: rotate(180deg);
}

/* Search card overlay positioned at bottom center of hero */
.search-card {
  position: relative;
  max-width: 800px;
  margin-top: -70px; /* pull up over the carousel */
  z-index: 5;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}
.search-card .card {
  border: 0;
}
.search-card .card .icon-search-attr {
  font-size: 2.5rem;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--switch-background);
}
.search-card .card label {
  font-size: small;
}
.search-card {
  /* Form fields styling to match site palette */
}
.search-card .nav-search .nav-link {
  color: var(--muted-foreground);
  font-size: large;
  font-weight: 600;
}
.search-card .nav-search .active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.search-card .form-control,
.search-card .form-select {
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  box-shadow: none;
}
.search-card .btn-orange {
  background: var(--buttoncolor);
  border: none;
  color: #fff;
  padding: 15px;
}
.search-card .btn-orange:hover {
  filter: brightness(1.03) saturate(1.05);
}

.form-search {
  position: relative;
}
.form-search .noborderinput {
  border: 0;
  font-weight: bold;
  color: #000;
  padding-left: 0;
}
.form-search .noborderinput:active, .form-search .noborderinput:focus {
  border: 0;
  outline: none;
}
.form-search .click-text-show-box {
  cursor: pointer;
}
.form-search .box-search-diadiem {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 2;
  width: 650px;
  padding: 20px;
  background: #fff;
}
.form-search .box-search-diadiem .box-diadanh-search .cover {
  display: flex;
  justify-content: center; /* Căn giữa ảnh theo chiều ngang */
  align-items: center; /* Căn giữa ảnh theo chiều dọc */
  height: 40px;
  overflow: hidden;
  border-radius: 3px;
}
.form-search .box-search-diadiem .box-diadanh-search .cover img {
  width: 100%; /* Đảm bảo ảnh không bị tràn kích thước khung */
  height: 100%; /* Đảm bảo ảnh không vượt quá chiều cao khung */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.form-search .box-khoihanh {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 10px 20px;
  background: #fff;
}
.form-search .accordion-button {
  background: transparent;
}

.logan-card-content {
  position: relative;
  max-width: 800px;
  z-index: 5;
  padding: 25px;
}

.service-home .heading1-listtour {
  font-size: 1.8rem;
}
.service-home .service_one {
  padding: 15px;
  border-radius: 15px;
  border: 1px #c1c1c1 solid;
}
.service-home .service_one .icon_service {
  margin-bottom: 5px;
}
.service-home .service_one .icon_service .bi {
  font-size: 1.8rem;
  padding: 5px 10px;
  border-radius: 15px;
}
.service-home .service_one .icon_service .icon_tour {
  background: var(--bs-success-bg-subtle);
  color: var(--bs-success);
}
.service-home .service_one .icon_service .icon_hoicho {
  background: var(--primary-background);
  color: var(--primary);
}
.service-home .service_one .icon_service .icon_combo {
  background: var(--support-hover-bg);
  color: var(--buttoncolor);
}
.service-home .service_one .icon_service .icon_vemaybay {
  background: var(--bs-info-bg-subtle);
  color: var(--bs-info);
}
.service-home .service_one .icon_service .icon_visa {
  background: var(--bs-danger-bg-subtle);
  color: var(--bs-danger);
}
.service-home .service_one .icon_service .icon_vevuichoi {
  background: var(--bs-warning-bg-subtle);
  color: var(--bs-warning);
}
.service-home .service_one strong {
  color: #000;
  font-size: 1rem;
}
.service-home .service_one .go-link {
  color: var(--buttoncolor);
  font-size: small;
  visibility: hidden;
}
.service-home .service_one:hover {
  box-shadow: 5px 5px 25px #ccc;
  border: 1px solid var(--support-hover-text-color);
  transform: translateY(-2px);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.service-home .service_one:hover .go-link {
  visibility: visible;
  transition: transform 160ms ease;
}
.service-home .service_one:hover strong {
  color: var(--orange);
}
.service-home .service_one .note_service {
  font-size: small;
  color: var(--muted-foreground);
  margin-bottom: 7px;
}
.service-home .service_one_combo {
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.service-home .service_one_combo::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%, rgba(255, 255, 255, 0.4) 100%, rgba(0, 0, 0, 0) 100%);
  content: "";
}
.service-home .service_one_combo h2 {
  position: absolute;
  top: 45%;
  text-align: center;
  z-index: 2;
  width: 100%;
  font-size: 1.3rem;
  color: #fff;
}
.service-home .service_one_combo a {
  color: #fff !important;
}

.heading {
  margin-bottom: 25px;
}
.heading h2, .heading h1 {
  font-size: 1.8rem;
  font-weight: 700;
}
.heading .text-line {
  font-weight: 300;
  font-size: 1.3rem;
}

.heading-sub {
  margin-bottom: 25px;
}
.heading-sub h2, .heading-sub h1 {
  font-size: 1.3rem;
  font-weight: 700;
}

.sec_km .swiper {
  width: 100%;
  height: 100%;
}
.sec_km .swiper .swiper-button-prev,
.sec_km .swiper .swiper-button-next {
  font-size: 1.2rem;
  color: var(--buttoncolor-foreground);
  height: 30px;
}
.sec_km .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  overflow: hidden;
}
.sec_km .swiper-slide:hover {
  transform: translateY(-5px);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.sec_km .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec_tour .box_tour {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 2px #c1c1c1;
}
.sec_tour .box_tour .cover {
  max-height: 200px;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.sec_tour .box_tour .cover img {
  width: 100%;
  height: 100%;
  /* Quan trọng: Giữ tỉ lệ ảnh, lấp đầy khung và cắt bỏ phần thừa */
  -o-object-fit: cover;
     object-fit: cover;
  /* Tùy chọn: Căn giữa phần hiển thị của ảnh */
  -o-object-position: center;
     object-position: center;
}
.sec_tour .box_tour .cover .text-day {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 3px 15px;
}
.sec_tour .box_tour .cover .banchay {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(45deg, #ff3737, #ff9900);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}
.sec_tour .box_tour .cover .hot {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(45deg, #ff2929, #ff9900);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}
.sec_tour .box_tour:hover {
  box-shadow: 0 0 10px #c1c1c1;
  transform: translateY(-5px);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.sec_tour .box_tour:hover .cover img {
  transform: scale(1.1);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.sec_tour .box_tour .info h3 {
  font-size: 1rem;
  min-height: 55px;
}
.sec_tour .box_tour .info h3 a {
  color: #000;
}
.sec_tour .box_tour .info h3 a:hover {
  color: var(--orange);
}
.sec_tour .box_tour .info .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
}
.sec_tour .box_tour .info strike {
  color: var(--muted-foreground);
}
.sec_tour .swiper-button-prev,
.sec_tour .swiper-button-next {
  font-size: 1.2rem;
  color: var(--muted);
  height: 30px;
}
.sec_tour .swiper-button-prev:hover,
.sec_tour .swiper-button-next:hover {
  color: var(--orange-foreground);
}

.tour-list .box_tour_list {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 2px #c1c1c1;
}
.tour-list .box_tour_list .cover {
  max-height: 200px;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.tour-list .box_tour_list .cover img {
  width: 100%;
  height: 100%;
  /* Quan trọng: Giữ tỉ lệ ảnh, lấp đầy khung và cắt bỏ phần thừa */
  -o-object-fit: cover;
     object-fit: cover;
  /* Tùy chọn: Căn giữa phần hiển thị của ảnh */
  -o-object-position: center;
     object-position: center;
}
.tour-list .box_tour_list .cover .text-day {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 3px 15px;
}
.tour-list .box_tour_list .cover .banchay {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(45deg, #ff3737, #ff9900);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}
.tour-list .box_tour_list .cover .hot {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(45deg, #ff2929, #ff9900);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}
.tour-list .box_tour_list:hover {
  box-shadow: 0 0 10px #c1c1c1;
  transform: translateY(-5px);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.tour-list .box_tour_list:hover .cover img {
  transform: scale(1.1);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.tour-list .box_tour_list .info h3 {
  font-size: 1.2rem;
}
.tour-list .box_tour_list .info h3 a {
  color: #000;
}
.tour-list .box_tour_list .info h3 a:hover {
  color: var(--orange);
}
.tour-list .box_tour_list .info .price {
  font-size: 1.1rem;
  font-weight: 700;
}
.tour-list .box_tour_list .info strike {
  color: var(--muted-foreground);
}

.swiper-ngaykhoihanh .swiper-button-prev,
.swiper-ngaykhoihanh .swiper-button-next {
  font-size: 1.2rem;
  top: 70% !important;
  color: var(--muted);
  height: 25px;
}
.swiper-ngaykhoihanh .swiper-button-prev:hover,
.swiper-ngaykhoihanh .swiper-button-next:hover {
  color: var(--orange-foreground);
}
.swiper-ngaykhoihanh .swiper-button-prev {
  left: -15px !important;
}
.swiper-ngaykhoihanh .swiper-button-next {
  right: -15px !important;
}

.sec_cat .box_cat {
  position: relative;
}
.sec_cat .box_cat .cover {
  aspect-ratio: 3/4;
  cursor: pointer;
  border-radius: 16px;
  width: 100%;
  height: auto;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}
.sec_cat .box_cat .cover::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
  width: 100%;
  height: 100%;
}
.sec_cat .box_cat .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* quan trọng */
}
.sec_cat .box_cat .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  color: #fff;
}
.sec_cat .box_cat .info h3, .sec_cat .box_cat .info h2, .sec_cat .box_cat .info a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}
.sec_cat .box_cat:hover .cover::before {
  background-color: rgba(0, 0, 0, 0);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.sec_cat .box_cat:hover {
  transform: translateY(-5px);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.sec_cat .swiper-button-prev,
.sec_cat .swiper-button-next {
  font-size: 1.2rem;
  color: var(--muted);
  height: 30px;
}
.sec_cat .swiper-button-prev:hover,
.sec_cat .swiper-button-next:hover {
  color: var(--orange-foreground);
}

.sec_hoicho {
  background-image: url("../images/bg-hoicho.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.sec_hoicho::before {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  content: " ";
}
.sec_hoicho .bg-hoicho {
  position: relative;
  z-index: 1;
}
.sec_hoicho .bg-hoicho-gradient {
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}
.sec_hoicho .box_in_hoicho {
  text-align: center;
}
.sec_hoicho .box_in_hoicho .bi {
  font-size: 2.2rem;
  background: var(--success-background);
  padding: 5px 10px;
  color: var(--success);
  border-radius: 15px;
}
.sec_hoicho .box_tour {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 2px #c1c1c1;
}
.sec_hoicho .box_tour .cover {
  max-height: 200px;
  overflow: hidden;
  position: relative;
}
.sec_hoicho .box_tour .cover img {
  width: 100%;
  height: 100%;
  /* Quan trọng: Giữ tỉ lệ ảnh, lấp đầy khung và cắt bỏ phần thừa */
  -o-object-fit: cover;
     object-fit: cover;
  /* Tùy chọn: Căn giữa phần hiển thị của ảnh */
  -o-object-position: center;
     object-position: center;
}
.sec_hoicho .box_tour .cover .text-day {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 3px 15px;
}
.sec_hoicho .box_tour .cover .banchay {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(45deg, #ff3737, #ff9900);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}
.sec_hoicho .box_tour .cover .hot {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(45deg, #ff2929, #ff9900);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}
.sec_hoicho .box_tour:hover {
  box-shadow: 0 0 10px #c1c1c1;
  transform: translateY(-5px);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.sec_hoicho .box_tour:hover .cover img {
  transform: scale(1.1);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.sec_hoicho .box_tour .info h3 {
  font-size: 1rem;
  min-height: 55px;
}
.sec_hoicho .box_tour .info h3 a {
  color: #000;
}
.sec_hoicho .box_tour .info h3 a:hover {
  color: var(--orange);
}
.sec_hoicho .box_tour .info .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
}
.sec_hoicho .box_tour .info strike {
  color: var(--muted-foreground);
}
.sec_hoicho .swiper-button-prev,
.sec_hoicho .swiper-button-next {
  font-size: 1.2rem;
  color: var(--muted);
  height: 30px;
}
.sec_hoicho .swiper-button-prev:hover,
.sec_hoicho .swiper-button-next:hover {
  color: var(--orange-foreground);
}
.sec_hoicho .swiper-pagination {
  bottom: -5px !important;
}

.sec_vemaybay .logo_hanghangkhong {
  border: 1px #c1c1c1 solid;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
}
.sec_vemaybay .logo_hanghangkhong:hover {
  border-color: var(--orange-foreground);
  box-shadow: 0 0 10px #c1c1c1;
  transform: translateY(-5px);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}

.sec_visa .box_main_visa {
  border-radius: 15px;
  overflow: hidden;
  border: 1px var(--switch-background) solid;
}
.sec_visa .box_main_visa .cover {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.sec_visa .box_main_visa .cover img {
  width: 100%;
  height: 100%;
  /* Quan trọng: Giữ tỉ lệ ảnh, lấp đầy khung và cắt bỏ phần thừa */
  -o-object-fit: cover;
     object-fit: cover;
  /* Tùy chọn: Căn giữa phần hiển thị của ảnh */
  -o-object-position: center;
     object-position: center;
}
.sec_visa .box_main_visa .cover::before {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  content: " ";
}
.sec_visa .box_main_visa .cover .text-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
  color: #fff;
}
.sec_visa .box_main_visa .cover .text-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
}
.sec_visa .box_main_visa:hover .cover::before {
  background-color: rgba(0, 0, 0, 0.4);
}
.sec_visa .box_main_visa:hover .cover img {
  transform: scale(1.1);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.sec_visa .one_visa {
  border: 1px var(--switch-background) solid;
  border-radius: 15px;
  padding: 15px;
  margin: 10px 0;
}
.sec_visa .one_visa a {
  color: #2b2b2b;
}
.sec_visa .one_visa .bi {
  font-size: 2rem;
  color: var(--orange-foreground);
}
.sec_visa .one_visa:hover {
  border-color: var(--orange-foreground);
  background-color: var(--support-hover-bg);
  transform: translateY(-3px);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}

.sec_gioithieu {
  padding-bottom: 150px;
}
.sec_gioithieu .img-km {
  position: relative;
}
.sec_gioithieu .img-km .cover {
  border-radius: 25px;
  box-shadow: 0 0 15px #7c7c7c;
}
.sec_gioithieu .img-km .cover img {
  border-radius: 20px;
}
.sec_gioithieu .img-km .kinhnghiem {
  position: absolute;
  bottom: -50px;
  right: -30px;
  background-color: var(--primary);
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px #7c7c7c;
}
.sec_gioithieu .img-km .kinhnghiem .bi {
  font-size: 2rem;
}
.sec_gioithieu .img-km .kinhnghiem strong {
  font-size: 1.8rem;
}
.sec_gioithieu .strong_company .bi {
  font-size: 2rem;
  color: var(--primary);
}
.sec_gioithieu .strong_company .bi::before {
  padding: 10px;
  background: rgba(19, 184, 49, 0.3);
  border-radius: 50% 40% 60% 30%/40% 50% 30% 60%;
  z-index: 0;
}
.sec_gioithieu .strong_company strong {
  font-size: 1.1rem;
}
.sec_gioithieu_demo2 {
  background-color: #1e40af;
  background-size: cover;
  background-position: bottom;
  padding-bottom: 150px;
}
.sec_gioithieu_demo2 .img-km {
  position: relative;
}
.sec_gioithieu_demo2 .img-km .cover {
  border-radius: 25px;
  position: relative;
  box-shadow: 0 0 15px #434343;
}
.sec_gioithieu_demo2 .img-km .cover img {
  border-radius: 20px;
}
.sec_gioithieu_demo2 .img-km .cover .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 2rem;
  opacity: 0.9;
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.sec_gioithieu_demo2 .img-km .cover .btn-play:hover {
  background-color: rgb(255, 255, 255);
  color: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}
.sec_gioithieu_demo2 .img-km .kinhnghiem {
  position: absolute;
  bottom: -50px;
  right: -30px;
  background-color: var(--background);
  color: var(--primary);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px #353535;
}
.sec_gioithieu_demo2 .img-km .kinhnghiem .bi {
  font-size: 2rem;
}
.sec_gioithieu_demo2 .img-km .kinhnghiem strong {
  font-size: 1.8rem;
}
.sec_gioithieu_demo2 .strong_company .bi {
  font-size: 2rem;
  color: var(--primary);
}
.sec_gioithieu_demo2 .strong_company .bi::before {
  padding: 10px;
  background: rgba(179, 221, 255, 0.6);
  border-radius: 50% 40% 60% 30%/40% 50% 30% 60%;
  z-index: 0;
}
.sec_gioithieu_demo2 .strong_company strong {
  font-size: 1.1rem;
}
.sec-khachhang {
  background-image: url("/images/bg-khachhang.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.sec-khachhang .slick-track {
  padding-top: 100px;
}
.sec-khachhang .box_talking .quote {
  position: relative;
  background: #F3F3F3;
  padding: 25px 25px 50px 25px;
  font-style: italic;
  min-height: 330px;
  border-radius: 15px;
}
.sec-khachhang .box_talking .info-person {
  width: 100%;
}
.sec-khachhang .box_talking .info-person .cover {
  width: 70px;
  height: 70px;
  overflow: hidden;
  float: left;
  margin-right: 5%;
  border-radius: 50%;
}
.sec-khachhang .box_talking .info-person .cover img {
  width: 100%;
  height: 100%;
}
.sec-khachhang .box_talking strong {
  font-size: 18px;
  font-weight: 700;
}
.sec-khachhang .box_talking .fromcountry {
  font-size: 16px;
  color: #727272;
}
.sec-khachhang .box_talking:hover .quote {
  box-shadow: 0 0 10px #ccc;
}
.sec-khachhang .box_talking:hover .info-person .cover {
  box-shadow: 0 0 10px #ccc;
}
.sec-khachhang .box_talking:hover .info-person h5 {
  color: var(--orange);
}
.sec-khachhang .slide-customer {
  padding-top: 100px;
}
.sec-khachhang .swiper-slide-active {
  margin-top: -70px;
}
.sec-khachhang .swiper-slide-active .box_talking .quote {
  position: relative;
  background: #F3F3F3;
  padding: 25px 25px 50px 25px;
  font-style: italic;
  min-height: 330px;
  border-radius: 15px;
}
.sec-khachhang .arrow-slide-customer {
  text-align: right;
}
.sec-khachhang .arrow-slide-customer .arrowslide {
  display: inline-block;
  width: 45px;
  height: 45px;
  border: 2px #cecece solid;
  font-size: 30px;
  text-align: center;
  color: #313131;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.6) 85%);
}
.sec-khachhang .arrow-slide-customer .arrowslide:hover {
  color: #313131;
  cursor: pointer;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(213, 213, 213, 0.9) 0%, rgba(232, 232, 232, 0.9) 20%, rgba(232, 232, 232, 0.9) 85%);
}
.sec-khachhang .linkcomment a img {
  height: 60px;
}

.sec_tintuc .box_tintuc {
  border: 1px #ccc solid;
  border-radius: 15px;
  overflow: hidden;
}
.sec_tintuc .box_tintuc .cover {
  aspect-ratio: 1/0.6;
  cursor: pointer;
  width: 100%;
  height: auto;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}
.sec_tintuc .box_tintuc .cover::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
  width: 100%;
  height: 100%;
}
.sec_tintuc .box_tintuc .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* quan trọng */
}
.sec_tintuc .box_tintuc h3 {
  font-size: 1.1rem;
}
.sec_tintuc .box_tintuc h3 a {
  color: #000;
}
.sec_tintuc .box_tintuc h3 a:hover {
  color: var(--orange);
}
.sec_tintuc .box_tintuc a {
  color: #000;
}
.sec_tintuc .box_tintuc a:hover {
  color: var(--orange);
}
.sec_tintuc .box_tintuc:hover {
  box-shadow: 0 0 15px #ccc;
  transform: translateY(-5px);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.sec_tintuc .box_tintuc:hover a {
  color: var(--orange);
}
.sec_tintuc .arrow-slide-customer {
  text-align: right;
}
.sec_tintuc .arrow-slide-customer .arrowslide {
  display: inline-block;
  width: 45px;
  height: 45px;
  border: 2px #cecece solid;
  font-size: 30px;
  text-align: center;
  color: #313131;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.6) 85%);
}
.sec_tintuc .arrow-slide-customer .arrowslide:hover {
  color: #313131;
  cursor: pointer;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(213, 213, 213, 0.9) 0%, rgba(232, 232, 232, 0.9) 20%, rgba(232, 232, 232, 0.9) 85%);
}

.box-support-center .bi {
  font-size: 2.3rem;
}

.sec_nhuongve .nav-nhuongve a {
  font-size: 1.1rem;
}
.sec_nhuongve .one_ve .ngaybay {
  font-size: small;
}

.sec_cauhoi .nav-pills .nav-link {
  color: #000;
}
.sec_cauhoi .nav-pills .nav-link.active,
.sec_cauhoi .nav-pills .show > .nav-link {
  background-color: var(--primary);
  color: #fff;
}

.sec_chuyenbay .grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}
.sec_chuyenbay .grid-list li {
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.sec_chuyenbay .grid-list li a {
  color: #000;
}
.sec_chuyenbay .grid-list li a:hover {
  color: var(--orange);
}
.sec_chuyenbay .grid-list h3 {
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
}

.nav-visa .nav-link {
  color: #000;
}
.nav-visa .nav-link:hover {
  color: var(--orange);
}

.sec_visahome .box-visa-home {
  border-radius: 15px;
  overflow: hidden;
}
.sec_visahome .box-visa-home .cover {
  aspect-ratio: 1/0.5;
  cursor: pointer;
  width: 100%;
  height: auto;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}
.sec_visahome .box-visa-home .cover::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
  width: 100%;
  height: 100%;
}
.sec_visahome .box-visa-home .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* quan trọng */
}
.sec_visahome .box-visa-home .cover h3 {
  position: absolute;
  bottom: 0;
  font-size: 1.4rem;
  padding: 10px;
  color: #fff;
}
.sec_visahome .box-visa-home .info {
  padding: 15px 0;
}
.sec_visahome .box-visa-home:hover {
  box-shadow: 0 0 15px #ccc !important;
  transform: translateY(-5px);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.sec_visahome .box-visa-home:hover a {
  color: var(--orange);
}
.sec_visahome .box-visa-home:hover .cover::before {
  background-color: rgba(0, 0, 0, 0.3);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}
.sec_visahome .swiper-button-prev,
.sec_visahome .swiper-button-next {
  font-size: 1.2rem;
  color: var(--buttoncolor-foreground);
  height: 30px;
}

.sec_quocgia_visa .box_quocgia_visa a {
  color: #000;
}
.sec_quocgia_visa .box_quocgia_visa a:hover {
  color: var(--orange);
}
.sec_quocgia_visa .box_quocgia_visa .cover {
  width: 102px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  margin: auto;
}
.sec_quocgia_visa .box_quocgia_visa .cover img {
  width: 100%;
  height: 100%;
}
.sec_quocgia_visa .box_quocgia_visa h3 {
  font-size: 1.1rem;
}

.sec_visa_quitrinh {
  background-color: #ffe8d6;
}
.sec_visa_quitrinh .box_quitrinhvisa {
  text-align: center;
}
.sec_visa_quitrinh .box_quitrinhvisa .number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  justify-content: center;
  align-content: center;
  border: 2px solid var(--orange);
  margin: auto;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  background-color: #fff;
}
.sec_visa_quitrinh .box_quitrinhvisa h4 {
  font-size: 1.2rem;
  margin: 10px 0;
}
.sec_visa_quitrinh .box_quitrinhvisa .text p {
  color: #4b4b4b;
}

footer {
  background: var(--primary);
  position: relative;
  padding-top: 100px;
}
footer h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
footer a {
  color: var(--background);
}
footer a:hover {
  color: var(--orange);
}
footer .nav_footer .nav-link {
  padding-left: 0;
  color: var(--background);
}
footer .nav_footer .nav-link:hover {
  color: var(--orange);
}
footer .icon-social-footer .bi {
  font-size: 1.2rem;
  padding: 10px 12px;
  background: #375acd;
  color: var(--background);
  border-radius: 10px;
}
footer .icon-social-footer .bi:hover {
  background: var(--orange);
}
footer .form-email {
  border-radius: 15px;
  border-color: var(--primary) !important;
  position: absolute;
  top: -70px;
}
footer .form-email .email-icon .bi {
  font-size: 2rem;
  padding: 7px 10px;
  background: var(--success-background);
  border: 1px var(--success) solid;
  border-radius: 10px;
  color: var(--success);
  justify-content: center;
  align-items: center;
}
footer .form-email .email-icon strong {
  font-size: 1.3rem;
}

.menu_blogs h1 {
  font-size: 1.2rem;
}
.menu_blogs .menu_post .nav .nav-link {
  color: #000;
  font-size: 1.1rem;
}
.menu_blogs .menu_post .nav .nav-link:hover {
  color: var(--orange);
}
.menu_blogs .menu_post .nav .active {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}

.sec_tintuc .blog_item_home .cover {
  aspect-ratio: 1/0.6;
  cursor: pointer;
  width: 100%;
  height: auto;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.sec_tintuc .blog_item_home .cover::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
  width: 100%;
  height: 100%;
}
.sec_tintuc .blog_item_home .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* quan trọng */
}
.sec_tintuc .blog_item_home .blog_item_title {
  font-size: 1.2rem;
  margin-top: 15px;
}
.sec_tintuc .blog_item_home .blog_item_title a {
  color: #000;
}
.sec_tintuc .blog_item_home .blog_item_title a:hover {
  color: var(--orange);
}
.sec_tintuc .blog_item .cover {
  aspect-ratio: 1/0.6;
  cursor: pointer;
  width: 100%;
  height: auto;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.sec_tintuc .blog_item .cover::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
  width: 100%;
  height: 100%;
}
.sec_tintuc .blog_item .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* quan trọng */
}
.sec_tintuc .blog_item .blog_item_title {
  font-size: 1rem;
  margin-top: 15px;
}
.sec_tintuc .blog_item .blog_item_title a {
  color: #000;
}
.sec_tintuc .blog_item .blog_item_title a:hover {
  color: var(--orange);
}
.sec_tintuc .nav_cat_news .title_block_cat_news {
  font-size: 1.3rem !important;
  font-weight: 700;
  color: var(--primary) !important;
}
.sec_tintuc .nav_cat_news .nav-link {
  color: #000;
  font-size: 1rem;
}
.sec_tintuc .nav_cat_news .nav-link:hover {
  color: var(--orange);
}
.sec_tintuc .nav_cat_news .active {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}
.sec_tintuc .blog_item_sub .blog_item_title {
  font-size: 1.1rem;
}
.sec_tintuc .blog_item_sub .blog_item_title a {
  color: #000;
}
.sec_tintuc .blog_item_sub .blog_item_title a:hover {
  color: var(--orange);
}

.travel-blog h1 {
  font-size: 1.7rem;
}
.travel-blog h2 {
  font-size: 1.4rem;
}
.travel-blog h3 {
  font-size: 1.3rem;
}
.travel-blog h4 {
  font-size: 1.1rem;
}
.travel-blog .font-large {
  font-size: 1.2rem;
}
.travel-blog ul#menudetail {
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-height: 500px;
  overflow-y: scroll;
  display: none;
}
.travel-blog ul#menudetail::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.travel-blog ul#menudetail::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.travel-blog ul#menudetail li a {
  font-size: 16px;
}
.travel-blog ul#menudetail li {
  padding: 5px 0;
  border-bottom: 1px #d1d1d1 dashed;
}
.travel-blog #btn-menu-detail {
  display: none;
  font-size: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0 !important;
}
.travel-blog .stickybtnmenudetail {
  position: -webkit-sticky; /* Safari */
  position: fixed;
  display: block !important;
  top: 30%;
  right: 30%;
  z-index: 2;
}
.travel-blog #menudetail {
  list-style-type: none;
}
.travel-blog #menudetail li {
  padding: 3px 0;
}
.travel-blog #menudetail .styleH2 {
  font-size: 14px;
  font-weight: bold;
}
.travel-blog #menudetail .styleH3 {
  font-size: 13px;
  padding-left: 30px;
}
.travel-blog #menudetail a {
  color: #313131;
}
.travel-blog #menudetail a:hover {
  color: #1398b3;
}
.travel-blog ul.menudetail, .travel-blog ul#menudetail2 {
  padding: 0;
  list-style-type: none;
}
.travel-blog ul.menudetail::-webkit-scrollbar {
  width: 0.1em;
}
.travel-blog ul.menudetail::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.travel-blog ul.menudetail::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.travel-blog ul.menudetail li {
  padding: 5px 0;
  border-bottom: 1px #d1d1d1 dashed;
}
.travel-blog ul.menudetail li a {
  color: #313131 !important;
  font-size: 16px !important;
}
.travel-blog ul.menudetail li a:hover {
  color: #1a6177 !important;
}
.travel-blog ul.menudetail li.styleH2 {
  text-transform: none;
  font-weight: 600;
  border-bottom: 1px #ccc dashed;
}
.travel-blog ul.menudetail li.styleH3 {
  padding-left: 15px;
}
.travel-blog ul.menudetail li.styleH3:before {
  margin-right: 5px;
}
.travel-blog ul.menudetail li.styleH4 {
  padding-left: 30px;
}
.travel-blog ul.menudetail li.styleH4:before {
  content: "◉";
  margin-right: 5px;
}

.tags a {
  color: #313131;
}
.tags a:hover {
  color: var(--primary);
}

.breadcrumb_bar a {
  color: #313131;
}
.breadcrumb_bar a:hover {
  color: var(--primary) !important;
}

.travel-blog-detail table {
  border-collapse: collapse;
  border: 1px #ccc solid;
  width: 100% !important;
}
.travel-blog-detail table th {
  background-color: var(--primary-background);
}
.travel-blog-detail table th, .travel-blog-detail table td {
  border: 1px #ccc solid;
  padding: 10px 10px;
  vertical-align: middle !important;
}
.travel-blog-detail h2 {
  border-left: 5px var(--accent-foreground) solid;
  padding-left: 10px;
}
.travel-blog-detail #section2,
.travel-blog-detail .wp-block-lazyblock-vnb-carousel,
.travel-blog-detail .wp-block-image {
  display: none;
}

.sidebar-news .title-dm {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.sidebar-news a {
  color: #313131;
}
.sidebar-news a:hover {
  color: var(--primary) !important;
}

.box-blog h3 {
  font-size: 1.3rem;
}
.box-blog h3 a {
  color: #313131;
}

.sidebar .visible-filter {
  display: none;
}
.sidebar .btn-showmore {
  cursor: pointer;
  text-decoration: underline;
  color: var(--orange);
  text-align: center;
}
.sidebar .btn-showmore:hover {
  color: var(--orange-foreground);
}
.sidebar .price-range-display {
  margin-bottom: 10px;
  font-size: 1rem;
  text-align: center;
}
.sidebar {
  /* Khung chứa các thanh trượt */
}
.sidebar .range-slider {
  position: relative;
  height: 40px;
}
.sidebar {
  /* Thanh nền cố định */
}
.sidebar .range-slider::before {
  content: "";
  position: absolute;
  top: 5%;
  transform: translateY(-50%);
  width: 100%;
  height: 5px;
  background: #ddd;
  border-radius: 5px;
  z-index: 1;
}
.sidebar {
  /* Thanh tô màu giữa hai núm */
}
.sidebar .slider-track {
  position: absolute;
  top: 5%;
  transform: translateY(-50%);
  height: 5px;
  background: var(--orange); /* Màu chủ đạo */
  border-radius: 5px;
  z-index: 2; /* Đặt cao hơn thanh nền */
  left: 0%; /* Sẽ được JS cập nhật */
  width: 100%; /* Sẽ được JS cập nhật */
}
.sidebar {
  /* Định dạng chung cho input range */
}
.sidebar .range-slider input[type=range] {
  position: absolute;
  width: 100%;
  height: 5px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 3;
}
.sidebar {
  /* Cần reset lại kiểu dáng cho thumb (núm kéo) */
}
.sidebar .range-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.sidebar {
  /* Ẩn track mặc định để chỉ thấy track tô màu bằng div.slider-track */
}
.sidebar .range-slider input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
}

.tour-detail h1 {
  font-size: 1.5rem;
}
.tour-detail #swiper-tour-detail .swiper-slide {
  max-height: 450px;
  display: flex;
  justify-content: center; /* Căn giữa theo chiều ngang */
  align-items: center; /* Căn giữa theo chiều dọc */
}
.tour-detail #swiper-tour-detail .swiper-slide img {
  width: 100%;
}
.tour-detail .imgSub {
  max-height: 213px;
  display: flex;
  justify-content: center; /* Căn giữa theo chiều ngang */
  align-items: center; /* Căn giữa theo chiều dọc */
  overflow: hidden;
}
.tour-detail .imgSub img {
  width: 100%;
}
.tour-detail .current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}
.tour-detail .sticky-nav-detail {
  top: 12.4% !important;
}
.tour-detail .nav-tab-detail .nav-link {
  color: #000;
  font-weight: 600;
}
.tour-detail .nav-tab-detail .nav-link:hover {
  color: var(--orange);
}
.tour-detail .nav-tab-detail .nav-link.active {
  color: var(--orange);
}
.tour-detail .block-info-tour h2 {
  font-size: 1.4rem;
  font-weight: 700;
}
.tour-detail .box-goidichvu h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
.tour-detail .box-goidichvu .price {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 600;
}

.rate_comment .point {
  font-size: 1.5rem;
}

@media (max-width: 767.98px) {
  .header-nav {
    display: none;
  }
  .hero .carousel-item img {
    height: 320px;
  }
  .search-card {
    margin-top: -40px;
    padding: 0 12px;
  }
}/*# sourceMappingURL=style.css.map */