.hero {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(26, 41, 66, 0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  max-width: 1200px;
  padding: 0 40px;
  animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.breadcrumb {
  background: #f1f1f1;
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
}
.page-header {
  padding: 80px 40px;
  text-align: center;
  color: #fff;
}
.page-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
}
.main-content {
  max-width: 1400px;
  margin: 30px auto 0px;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}
.sidebar {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  height: fit-content;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 20px;
}
.filter-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.filter-section h3 {
  font-size: 15px;
  margin-bottom: 15px;
  color: var(--dark-navy);
  text-transform: uppercase;
}
.filter-option {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}
.filter-option input {
  margin-right: 10px;
  accent-color: var(--primary-orange);
}
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: #f1f1f1;
  padding: 15px 25px;
  border-radius: 12px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.property-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
.property-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.image-section {
  position: relative;
  width: 400px;
  flex-shrink: 0;
}
.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #e74c3c;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.dot.active {
  background: #fff;
}
.content-section {
  flex: 1;
  padding: 15px 30px;
  display: flex;
  flex-direction: column;
}
.property-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.address {
  color: #666;
  font-size: 15px;
  margin-bottom: 16px;
}
.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 20px;
}
.amenities-label {
  color: #04952d;
  font-weight: 600;
  font-size: 14px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #04952d;
  font-size: 14px;
}
.amenity::before {
  content: "✓";
  font-weight: 700;
}
.features {
  display: flex;
  gap: 24px;
  padding: 10px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 10px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 14px;
}
.feature-icon {
  color: #666;
}
.description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: auto;
}
.pricing-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.price-label {
  color: #666;
  font-size: 13px;
  text-transform: uppercase;
}
.price {
  color: #e74c3c;
  font-size: 32px;
  font-weight: 700;
}
.price-unit {
  color: #666;
  font-size: 14px;
}
.tax-note {
  color: #999;
  font-size: 13px;
}
.availability {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e74c3c;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}
.availability-dot {
  width: 10px;
  height: 10px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.book-button {
  background: #ff5722;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.3s ease;
}
.book-button:hover {
  background: #f4511e;
}
.rooms-available {
  color: #e74c3c;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}
@media (max-width: 968px) {
  .property-card {
    flex-direction: column;
  }
  .image-section {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 968px) {
  .main-content {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    margin-bottom: 30px;
  }
  nav ul {
    display: none;
  }
}
.r_gt_1 {
  background: #f8f6f3;
}
.container_custom_flex {
  display: flex;
  gap: 20px;
  display: block;
  width: 100%;
}
.list_tab_menu {
  width: 100%;
  float: left;
}
.list_tab_menu li {
  border-radius: 0.5rem;
  float: left;
  border: solid 1px #e5e7eb;
  margin-bottom: 20px;
}
.list_tab_menu .active {
  border-color: #f06c28;
}
.list_tab_menu li a {
  color: #131313;
  text-align: center;
  float: left;
  font-size: 18px;
  height: 36px;
  line-height: 36px;
}
.box_na_rh2 {
  padding: 15px 20px;
  width: 100%;
}
.cta-section {
  height: 400px;
  padding: 60px 0px;
  background: #1a2942;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  float: none;
  clear: both;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}
.cta-content {
  width: 600px;
  float: left;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.cta-section h2 {
  font-size: 30px;
  color: #fff;
  line-height: 40px;
  text-align: left;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 40px;
}
.btn-cta {
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-cta-primary {
  background: #f06c28;
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}
.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}
.btn-cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-cta-secondary:hover {
  background: #fff;
  color: #333;
  transform: translateY(-3px);
}
footer {
  background: #131313 url(../imgs/bg_foot_1.jpg) no-repeat top right / contain;
  color: #fff;
  float: none;
  clear: both;
  padding: 80px 40px 0px;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30% repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.f-detail {
  text-align: left;
}
.footer-section h4 {
  color: #f06c28;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 10px;
}
.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}
.footer-section a:hover {
  color: #f06c28;
  padding-left: 5px;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 0;
}
.social-links a:hover {
  background: #f06c28;
  color: #fff;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo .logo-icon {
  width: 60px;
  height: 60px;
  font-size: 32px;
}
.footer-info {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
}
.footer-bottom {
  text-align: center;
  padding: 10px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.footer-bottom p,
.footer-info p {
  color: #ffffffb3;
}
@media (max-width: 1200px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 968px) {
  .hero h1 {
    font-size: 48px;
  }
  .hero-tagline {
    font-size: 32px;
  }
  .features-grid,
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .experience-grid,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  nav ul {
    display: none;
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 36px;
  }
  .section-title {
    font-size: 36px;
  }
  .features-grid,
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  footer {
    background: #131313;
  }
}
.container_custom_flex {
  display: flex;
  gap: 20px;
}
.box_na_rh2 {
  padding: 0px 35px 30px;
  width: 100%;
}
.min_wrap2 {
  width: 945px;
  position: relative;
  margin: 0 auto;
}
.min_wrap_mt {
  width: 800px;
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.rh_3,
.rh_6 {
  background: #fff;
}
.box_ykkh {
  display: flex;
  gap: 20px;
  background: #fff none repeat scroll 0 0;
  border: 1px solid #e1e1e1;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
}
.bot_ykkh {
  flex: 0 0 30%; /* Chiếm 3/10 = 30% */
  text-align: center;
  background: #c4c6c7;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bot_ykkh figure {
  height: 156px;
  width: 150px;
  margin: auto;
}
.bot_ykkh figure img {
  border: 3px solid #4b4e51;
  border-radius: 100px;
  height: 150px;
  margin-bottom: 10px;
  width: 150px;
}
.bot_ykkh strong {
  color: #222;
  font-size: 15px;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
}
.bot_ykkh p {
  color: #222;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 13px;
}
.text_ykkh {
  flex: 0 0 70%; /* Chiếm 7/10 = 70% */
  font-size: 18px;
  line-height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text_ykkh::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f10d";
  font-size: 30px;
  color: #4b4e51;
  font-weight: 600;
  margin-bottom: 15px;
}
.text_ykkh .f-detail {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  padding-right: 30px;
}
/* Tablet */
@media (max-width: 1024px) {
  .bot_ykkh {
    flex: 0 0 35%;
  }
  .text_ykkh {
    flex: 0 0 65%;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .box_ykkh {
    flex-direction: column;
  }
  .bot_ykkh,
  .text_ykkh {
    flex: 1 1 100%;
  }
  .bot_ykkh {
    padding: 20px;
  }
  .text_ykkh .f-detail {
    padding: 0 15px;
    font-size: 14px;
  }
  .text_ykkh {
    font-size: 16px;
    line-height: 26px;
    padding: 20px;
  }
}
/* Small Mobile */
@media (max-width: 480px) {
  .bot_ykkh figure {
    height: 126px;
    width: 120px;
  }
  .bot_ykkh figure img {
    height: 120px;
    width: 120px;
  }
  .swiper-pagination-55,
  .text_ykkh::before {
    display: none;
  }
  footer {
    padding: 80px 0px 0px;
  }
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-section {
  flex: 1;
}
/* Mobile */
@media (max-width: 768px) {
  .footer-section {
    flex: 0 0 100%; /* Mặc định chiếm 100% */
  }
  .footer-section:nth-child(2),
  .footer-section:nth-child(3) {
    flex: 0 0 calc(50% - 10px); /* Chiếm 50% (trừ gap) */
  }
}
/* Small Mobile - nếu muốn tất cả chiếm 100% ở màn hình rất nhỏ */
@media (max-width: 480px) {
  .footer-section:nth-child(2),
  .footer-section:nth-child(3) {
    flex: 0 0 48%;
  }
  .header-top {
    display: none;
  }
}
.t1_cont {
  text-align: center;
  font-size: 30px;
  line-height: 30px;
  font-weight: 600;
  color: #000;
  letter-spacing: 2px;
  text-transform: capitalize;
  font-weight: 500;
}
.swiper55 {
  overflow: hidden;
}
.swiper-pagination-55 {
  position: absolute;
  bottom: 30px !important;
  left: 0;
  right: 0;
}
.swiper-pagination-55 .swiper-pagination-bullet {
  border: 1px solid #4b4e51;
  border-radius: 12px;
  height: 12px;
  margin: 0 3px !important;
  width: 3px;
  background: #4b4e51;
  opacity: 1;
}
.swiper-pagination-55 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #167b42;
  border: 1px solid #b13909;
  height: 25px;
  margin: 0 3px !important;
  width: 5px;
}
.tabs_head {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: nowrap;
  align-content: space-around;
  justify-content: center;
  text-align: center;
}
.tab_item {
  font-size: 18px;
  font-weight: 600;
  color: #f06c28;
  cursor: pointer;
  padding-bottom: 10px;
  position: relative;
}
.tab_item * {
  cursor: pointer !important;
}
.tab_item.active {
  color: #f06c28;
}
.tab_item.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #c49a3a;
}
.tab_content {
  display: none;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}
.tab_content.active {
  display: block;
}
.f-detail h3 {
  color: #f06c28;
  position: relative;
  margin-bottom: 25px;
}
.f-detail h3:before {
  position: absolute;
  content: "";
  width: 71px;
  height: 2px;
  background: #bb9743;
  bottom: -5px;
  left: 2px;
}
#header.active {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
#header.active nav a {
  color: #222;
}
.sty_home #header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}
.header-top {
  background: #167b42;
  padding: 8px 0;
  font-size: 13px;
  color: #fff;
}
.header-top-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top-left {
  display: flex;
  gap: 10px;
}
.header-top-left a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.header-top-left a:hover {
  color: #167b42;
}
.header-main {
  padding: 10px 0;
  box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
}
.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.logo-icon a {
  color: #fff;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text .main {
  font-size: 24px;
  font-weight: 700;
  color: #1a2942;
  letter-spacing: 1px;
}
header.scrolled .logo-text .main {
  color: #1a2942;
}
.logo-text .sub {
  font-size: 11px;
  color: #3e6a51;
  letter-spacing: 3px;
  text-transform: uppercase;
}
header.scrolled nav a,
header.header-actions a {
  color: #1a2942;
}
nav a:hover::after {
  width: 100%;
}
nav a:hover {
  color: #3e6a51;
}
.header-actions {
  display: flex;
  gap: 15px;
}
.header-btn {
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.header-top-right a {
  color: #fff;
  margin-left: 10px;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
header.scrolled .btn-outline {
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-outline:hover {
  background: #3e6a51;
  border-color: #3e6a51;
  color: #fff;
  transform: translateY(-2px);
}
.btn-solid {
  background: #f06c28;
  color: #fff;
  box-shadow: 0 4px 15px rgba(240, 108, 40, 0.3);
  text-transform: uppercase;
}
.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 108, 40, 0.4);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(26, 41, 66, 0.5) 100%);
}
.r1_dv ul {
  margin-left: 15px;
}
.r1_dv ul li {
  list-style: disc;
  margin-left: 20px;
}
.search-box {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 20px;
  transition: width 0.35s ease;
  overflow: hidden;
}
.search-box.active {
  width: 300px;
}
.search {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5;
  pointer-events: auto;
  color: #fff;
  font-size: 16px;
}
.search-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0 45px;
  border: none;
  outline: none;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}
.search-box.active .search-input {
  opacity: 1;
  pointer-events: auto;
  color: #fff;
}
.header-top-left .active .search-icon {
  display: none;
}
.header-top-left .active .search {
  right: 0 !important;
  left: auto;
  display: block;
}
.search-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5;
  pointer-events: auto;
  color: #fff;
  font-size: 16px;
}
.close-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5;
  pointer-events: auto;
  color: #fff;
  font-size: 16px;
}
.close-icon {
  display: none;
}
.search-box.active .close-icon {
  display: block;
}
.f-detail-tcode {
  width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}
.r_lvhd:nth-child(2n) .img_f_lvhd {
  margin-left: 0;
  margin-right: 0rem;
}
.r_lvhd:nth-child(2n) .nd_f_lvhd {
  padding-right: 0;
  padding-left: 2rem;
}
.t2_tcode {
  position: relative;
  width: 100%;
}
.r_lvhd {
  width: 100%;
  float: left;
  margin-bottom: 60px;
}
.f_sp .t2_tcode h2 {
  font-size: 24px;
  margin-bottom: 5px;
}
.t2_tcode h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.cont_xemthem {
  position: absolute;
  right: 0;
  top: 10px;
  color: #0f6f39;
}
.cont_xemthem a {
  color: #0f6f39;
}
.link_f_lvhd:hover {
  background-color: #ccc;
  color: #333;
}
.r_lvhd .min_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap40);
}
.r_lvhd:nth-child(2n) .min_wrap {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: var(--gap40);
}
.img_f_lvhd {
  user-select: none;
  overflow: hidden;
  flex: 1 1 30rem;
  margin-right: 2rem;
  max-width: 100%;
  aspect-ratio: 3/2;
  background-color: #fff;
  border: 0.3rem solid #eee;
  border-top-left-radius: 8rem;
  border-bottom-right-radius: 8rem;
}
.img_f_lvhd a {
  display: block;
  height: 100%;
}
.img_f_lvhd img {
  padding: 0.3rem;
  display: block;
  width: 100%;
  height: 100%;
  border-top-left-radius: 8rem;
  border-bottom-right-radius: 8rem;
  transition: transform 0.4s;
  -webkit-transition: transform 0.4s;
  -moz-transition: transform 0.4s;
  -ms-transition: transform 0.4s;
  -o-transition: transform 0.4s;
}
.img_f_lvhd:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.nd_f_lvhd {
  flex: 1 1 30rem;
  max-width: 100%;
  padding-right: 2rem;
  text-align: justify;
}
.link_f_lvhd {
  margin-top: 4rem;
}
.min_wrap > .r_lvhd:nth-child(2n) .img_f_lvhd {
  margin-left: 0;
  margin-right: 0rem;
}
.min_wrap > .r_lvhd:nth-child(2n) .nd_f_lvhd {
  padding-right: 0;
  padding-left: 2rem;
}
.min_wrap > .r_lvhd:nth-child(2n) .t2_tcode .na_cont {
  color: #0f6f39;
}
.ten_list_lvhd a {
  color: #222;
  color: #0f6f39;
}
.ten_list_lvhd {
  padding-bottom: 10px;
  font-size: 20px;
  margin-bottom: 10px;
}
.list_dv_tcode li {
  width: 100%;
  float: left;
  margin-bottom: 45px;
}
.min_wrap > .r_lvhd:nth-child(2n) .f-detail {
  color: #333;
}
.min_wrap > .r_lvhd:nth-child(2n) .t2_tcode::before {
  background-color: #bb9743;
}
.min_wrap > .r_lvhd:nth-child(2n) .link_f_lvhd:hover {
  background-color: #ccc;
  color: #333;
}
.link_f_lvhd {
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 500;
  line-height: 2rem;
  background-color: #0f6f39;
  color: #fff;
  padding: 1.4rem 2.4rem;
  border-radius: 2.4rem;
  -webkit-border-radius: 2.4rem;
  -moz-border-radius: 2.4rem;
  -ms-border-radius: 2.4rem;
  -o-border-radius: 2.4rem;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.swiper5 .swiper-wrapper .swiper-slide a {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16 / 9;
  background-color: #fff;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
}
.swiper5 .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  height: 100px !important;
  object-fit: contain;
  padding: 1rem;
}
.swiper5 .swiper-slide {
  margin-bottom: 20px !important;
  height: 80px;
}
.swiper1 {
  height: 90vh;
  overflow: hidden;
}
.swiper1 .swiper-slide {
  height: 90vh;
}
.h-100 {
  height: 100% !important;
}
.slider-homepage-pan .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ct-slide-homepage {
  position: absolute;
  top: 30%;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 13;
}
.ct-slide-homepage .text {
  text-align: center;
  width: 850px;
  margin: auto;
  color: #fff;
}
.ct-slide-homepage .title-slide {
  font-size: 41px;
  line-height: 55px;
  margin-bottom: 15px;
  color: #fff;
}
.ct-slide-homepage .intro-slide {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.2px;
}
.read-more-homepage {
  font-size: 14px;
  color: #fff;
  display: inline-block;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
#counter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap20);
}
.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: #f06c28;
  color: #fff;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-size: 52px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
}
.til_bd_crh1 {
  font-size: 15px;
  max-width: 800px;
  font-weight: 500;
  margin: 0 auto;
}
.til_bd_crh1 p {
  margin-bottom: 25px;
}
.img_crh1 figure {
  margin-bottom: 2.5rem;
}
.img_crh1 .secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.img_crh1 .secondary-grid img {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 1;
  object-fit: cover;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.section-title {
  text-align: center;
  position: relative;
}
.section-title h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
  padding-bottom: 15px;
  position: relative;
}
.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #1c2025, transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #222;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.tn_sm > li {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  gap: var(--gap20);
}
.tn_sm > li > .box_tn_sm {
  flex: 1;
}
.tn_sm > li > .box_tn_sm .til_gtcl {
  color: var(--PrimaryColor);
}
.til_gtcl {
  font-size: var(--font-size-16);
  font-weight: 600;
  color: var(--color-1);
  margin-bottom: 0.8rem;
}
.tn_sm > li > figure {
  width: 10rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tn_sm > li > figure img {
  height: 8rem;
  object-fit: contain;
}
.list_lvhd {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-top: 30px;
}
.list_duan .na_rh2 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.ico_rh2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  background-color: #0f6f39;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.2rem;
  -webkit-border-radius: 1.2rem;
  -moz-border-radius: 1.2rem;
  -ms-border-radius: 1.2rem;
  -o-border-radius: 1.2rem;
}
.list_duan .na_rh2 span {
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
}
.ico_rh2 img {
  max-width: 3.5rem;
  max-height: 3.5rem;
  object-fit: contain;
}
.list_rh2 > li {
  position: relative;
  margin-bottom: 30px;
}
.list_rh2 > li figure {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.list_rh2 > li figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list_duan > li figure img {
  display: block;
  width: 100%;
  height: 100%;
  mask-image: none;
  -webkit-mask-image: none;
}
.m_list_lvhd {
  background: color-mix(in srgb, #fff, transparent 5%);
  transition: all ease-in-out 0.3s;
  position: relative;
  padding: 0px 35px 30px;
}
.m_list_lvhd .icon {
  margin: 0;
  width: 80px;
  height: 80px;
  background: #0f6f39;
  color: #fff;
  border: 6px solid #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 10px;
  transition: filter 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}
.list_lvhd li {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
}
.list_lvhd li:hover {
  transform: translateY(-15px) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.img_list_lvhd {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: #fff;
  border-radius: 8px 8px 0 0;
  margin-bottom: 15px;
  position: relative;
}
.img_list_lvhd img {
  height: 100%;
  width: 100%;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  border-radius: 8px 8px 0 0;
}
.na_list_lvhd {
  font-weight: 700;
  margin: 10px 0 15px;
  font-size: 18px;
  transition: ease-in-out 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #222;
}
.na_list_lvhd a {
  color: #222;
}
.feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f06c28;
  color: #fff;
  padding: 5px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #167b42;
  text-decoration: none;
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
}
.til_lvhd {
  text-align: justify;
  flex: 1 0 25rem;
  max-width: 100%;
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#tj-back-to-top {
  position: fixed;
  right: 15px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #00451e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.18s ease, opacity 0.2s ease;
}
#tj-back-to-top.arrow {
  width: 48px;
  height: 48px;
  font-size: 0;
  background: #00451e;
}
#tj-back-to-top .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
#tj-back-to-top:hover {
  transform: translateY(-4px);
}
#tj-back-to-top svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  display: block;
}
#back-progress {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
}
#back-progress span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.progress-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.progress-bar {
  fill: none;
  stroke: #00451e;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.2s linear;
}
.hea1 {
  background: #fff;
}
.hea1 .min_wrap {
  position: relative;
  padding: 1px 0;
}
.logo_nagri {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  margin: auto;
  padding: 0 10px 14px;
}
.logo_nagri img {
  display: block;
  width: 115px;
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  margin: auto;
}
.mobile_foot {
  display: none;
}
.desktop_foot {
  display: block;
}
.ul_hea1 {
  float: left;
  overflow: hidden;
}
.ul_hea1 > li {
  float: left;
  font-size: 13px;
  color: #888;
  line-height: 40px;
  padding: 0 16px 0 15px;
  position: relative;
}
.ul_hea1 > li::after {
  content: "";
  width: 1px;
  height: 12px;
  background: #ddd;
  position: absolute;
  top: 14px;
  right: 0;
}
.ul_hea1 > li:first-child {
  padding-left: 0;
}
.ul_hea1 > li:last-child {
  padding-right: 0;
}
.ul_hea1 > li:last-child::after {
  display: none;
}
.ul_hea1 > li:first-child > a {
  color: #ed1c24;
  font-weight: 700;
}
.ul_hea1 > li > a {
  color: #222;
}
.icon_hotline_hea {
  width: 12px;
  height: 12px;
  background-position: 0 0;
  margin-right: 5px;
  top: 2px;
}
.icon_email_hea {
  width: 12px;
  height: 12px;
  background-position: 0 -12px;
  margin-right: 5px;
  top: 2px;
}
.tool_hea1 {
  float: right;
  overflow: hidden;
}
.ul_lang {
  line-height: 12px;
  overflow: hidden;
  padding: 0 0 0 10px;
  float: left;
  margin-top: 5px;
}
.ul_lang > li {
  float: left;
  opacity: 0.2;
}
.ul_lang > li.active,
.ul_lang > li:hover {
  opacity: 1;
}
.ul_lang > li + li {
  margin-left: 8px;
}
.ul_lang > li a {
  display: block;
}
.ul_lang > li img {
  vertical-align: top;
  height: 15px;
}
.ipt_s {
  width: 250px;
  height: 22px;
  border: 1px solid #ddd;
  background: #fff;
  color: #000;
  font-size: 13px;
  padding: 0 28px 0 5px;
}
.btn_s {
  height: 22px;
  border: 0;
  position: absolute;
  top: 7px;
  right: 11px;
  cursor: pointer;
  background: #187440;
  padding: 0 5px;
  color: #fff;
}
.hea2 {
  height: 44px;
  background: #fff;
  position: relative;
}
.nav-header ul > li {
  float: left;
  position: relative;
}
.sty_home .nav-header ul > li > a {
  color: #222;
}
.scrolled .nav-header ul > li > a {
  color: #222 !important;
}
.nav-header ul > li > a {
  text-transform: uppercase;
  color: #222;
  font-weight: 600;
  font-size: 14px;
  padding: 0 10px;
  line-height: 36px;
  display: block;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.nav-header ul > li.active > a,
.mn_child_01 > li:hover > a {
  color: #222;
}
.nav-header ul > li {
  position: relative;
}
.nav-header ul > li:hover > ul.mn_child_01 {
  visibility: visible;
  z-index: 90;
  opacity: 1;
  top: 36px;
}
.nav-header ul > li > ul.mn_child_01 {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 44px;
  background: #fff;
  min-width: 200px;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  padding: 10px 0;
}
.nav-header ul > li > ul.mn_child_01 > li {
  position: relative;
  width: 100%;
  float: left;
}
.nav-header ul > li > ul.mn_child_01 > li:hover {
  position: relative;
  width: 100%;
  float: left;
}
.nav-header ul > li > ul.mn_child_01 > li > a {
  color: #333;
  display: block;
  padding: 3px 20px 3px 15px;
  white-space: nowrap;
  font-size: 13px;
  width: 100%;
  float: left;
}
.nav-header ul > li > ul.mn_child_01 > li:hover > a {
  color: #fff;
  background: #167b42;
}
.nav-header ul > li > ul.mn_child_01 > li:hover > a::before {
  background: url(../imgs/layout/icon_17.png) no-repeat;
}
.nav-header ul > li > ul.mn_child_01 > li > a::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../imgs/layout/icon_15.png) no-repeat;
  display: inline-block;
  position: relative;
  margin-right: 7px;
}
.nav-header ul > li > ul.mn_child_01 > li:hover > ul.mn_child_02 {
  display: block;
}
.nav-header ul > li > ul.mn_child_01 > li > ul.mn_child_02 {
  display: none;
  position: absolute;
  top: -2px;
  left: 200px;
  background: #fff;
  min-width: 200px;
  padding: 2px 0;
  overflow-y: auto;
  -webkit-box-shadow: inset 3px -1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 3px -1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 3px -1px 3px rgba(0, 0, 0, 0.1);
  height: auto !important;
}
.nav-header ul > li > ul.mn_child_01 > li > ul.mn_child_02 > li > a {
  color: #555;
  display: block;
  padding: 5px 20px 5px 15px;
  white-space: nowrap;
}
.nav-header ul > li > ul.mn_child_01 > li > ul.mn_child_02 > li > a::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  position: relative;
  margin-right: 7px;
}
.nav-header ul > li > ul.mn_child_01 > li > ul.mn_child_02 > li > a:hover {
  color: #555;
}
.list-utils {
  padding: 6px 0;
}
.list-utils li {
  padding: 10px 0;
  background-color: transparent;
  box-shadow: none;
  padding: 6px 0;
  border-radius: 0;
  border-bottom: 1px solid #e7e7e7;
}
.list-utils li:hover {
  transform: none !important;
  box-shadow: none;
}
.list-utils li i {
  width: 24px;
  color: #167b42;
}
.list-utils li span {
  color: #333;
}
.list-utils.list-utils-2 {
  padding: 6px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.list-utils.list-utils-2 li {
  padding: 10px 16px;
  border-radius: 20px;
  background-color: rgba(22, 123, 66, 0.1);
  box-shadow: none;
}
.booking-section {
  padding: 40px 0;
  color: #fff;
  position: relative;
}
.booking-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
}
.booking-section .title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
.booking-section .title::after {
  display: none;
}
.booking-section form {
  background-color: #fff;
  color: #333;
  padding: 30px 40px;
  border-radius: 20px;
}
.form-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0 0 30px 0;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
  display: block;
}
.form-group input,
.form-group select {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 4px;
  color: #333;
}
.form-group input::placeholder {
  color: #333;
}
.form-group select {
  padding: 0 12px 0 7px;
}
.booking-section form button {
  display: block;
  margin: 30px auto 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background-color: #167b42;
  padding: 14px 18px;
  border: none;
  outline: none;
  border-radius: 8px;
  transition: 0.3s;
}
.wrap_list_lvhd {
  padding: 0;
  overflow: hidden;
}
.nav-header ul > li > ul.mn_child_01 > li > a {
    font-size: 13px;
}
@media (max-width: 480px) {
  .booking-card {
    width: 96% !important;
  }
  .room-content {
    display: grid;
    grid-template-columns: 100% !important;
    gap: 40px;
  }
  .map-container iframe {
    width: 100% !important;
    height: 300px;
    border-radius: 10px;
  }
  .header-content {
    gap: 4px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .icon_menu_mobile {
    width: 43px;
    height: 43px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
  .header-btn {
    padding: 10px 20px;
    border-radius: 5px;
  }
  .brand-item {
    margin-bottom: 0px;
  }
  .m_list_lvhd {
    padding: 0px 15px 20px;
  }
  .brand-tab-content {
    display: grid;
  }
  .brand-name {
    font-size: 12px !important;
  }
  .brand-item {
    padding: 10px !important;
  }
  .cta-section h2 {
    font-size: 18px;
    line-height: 30px;
  }
  .cta-content {
    width: 100%;
  }
  .min_wrap2,
  .min_wrap_mt {
    width: 100%;
  }
  .list_tab_menu li a {
    padding: 5px 15px !important;
    font-size: 12px !important;
  }
  .brand-tab-content .brand-item,
  .list_rh_index {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .about-grid .box:nth-child(3) {
    display: flex;
    flex-direction: column;
  }
  .about-grid .box:nth-child(1),
  .about-grid .box:nth-child(2) {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .list_rh_4 {
    grid-template-columns: 1fr;
  }
  .logo_nagri img {
    width: 100px;
    top: 10px;
  }
  .hea1 .min_wrap {
    height: 70px;
  }
  .icon_menu_mobile {
    top: 23px;
    right: 15px;
  }
  .r_lvhd {
    margin-bottom: 30px;
  }
  .img_f_lvhd,
  .nd_f_lvhd,
  .min_wrap > .r_lvhd:nth-child(2n) .nd_f_lvhd,
  .min_wrap > .r_lvhd:nth-child(2n) .img_f_lvhd {
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .center-circle {
    display: none;
  }
  .about-grid {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .list_f1 {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--gap20);
  }
  .list_f1 > li:nth-child(2),
  .list_f1 > li:nth-child(3),
  .search-box {
    display: none;
  }
  .na_rh2 {
    right: 0;
  }
  .ico_rh2 {
    bottom: 15px;
    right: 15px;
  }
  .list_rh2 > li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: none;
    -webkit-mask-image: none;
    mask-position: unset;
    mask-repeat: no-repeat;
  }
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.6rem;
  }
  .hotline_rh3 {
    display: block;
  }
  .but_1,
  .but_2 {
    display: flex;
    width: 100%;
  }
  .news_spec.parent {
    display: flex;
    flex-wrap: wrap;
  }
  .news_spec > div {
    flex: 0 0 100%;
  }
  .rh_5 {
    background: var(--PrimaryColor);
    position: relative;
  }
  .rh_5::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../imgs/bg_rh_5.png) no-repeat top right/contain;
    opacity: 0.1;
    pointer-events: none;
  }
  .rh_5 .min_wrap {
    position: relative;
    z-index: 2;
  }
  .list_rh4 > li > a h3 {
    font-size: var(--font-size-20);
  }
  .swiper2 {
    margin: -0 -1.6rem;
    padding: 0 1.6rem;
  }
  .swiper2 .swiper-slide {
    width: 80%;
    max-width: 320px;
  }
  .swiper4 {
    max-width: calc(100vw - 4.2rem);
  }
  .list_rrh3 > li {
    text-align: center;
  }
  .img_lrrh3 {
    margin: auto;
  }
  .r_gt2,
  .list_info_f_contact > li,
  .l_if_r_cctfgh,
  .pri_if_r_cctfgh {
    flex-basis: 100%;
  }
  .r_cctfgh,
  .if_r_cctfgh {
    flex-wrap: wrap;
  }
  .bot_ct_f_gh {
    flex-direction: column;
  }
  .pri_if_r_cctfgh {
    text-align: left;
  }
  .r_bot_ct_f_gh {
    padding-left: 0;
    border-left: 0;
  }
  .f_contact .but_1,
  .img_lnt,
  .list_news_cata > li > a,
  .r1_dv .but_1 {
    width: 100%;
  }
  .list_news_cata > li {
    flex-direction: column;
  }
  .content_f_tttc {
    padding: 2.4rem;
  }
  .logo-text .main {
    font-size: 20px;
  }
  .logo-text .sub {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .list_lvhd {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .na_list_lvhd {
    font-size: 14px;
    font-weight: 600;
    min-height: unset;
    margin: 10px 0;
  }
  .brand-tab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .box_na_rh2 {
    padding: 0 15px 20px;
  }
  .booking-section form {
    padding: 20px;
  }
  .form-group {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0 0 15px 0;
  }
}
