* {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (min-width: 1400px) {
    .site-header .container {
        max-width: 1620px;
    }
}

/* Styling for the menu */
.menu-container {
    background-color: #fff; /* Nền menu chính màu trắng */
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #ddd; /* Viền dưới mỏng */
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    display: block;
    padding: 10px;
    color: #000;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    text-transform: uppercase;
    font-size: 15px;
}


.menu > li > a:hover {
    background-color: #f2f2f2; /* Hiệu ứng hover nền xám nhạt */
    color: #007bff; /* Chữ đen chuyển thành màu xanh */
}

/* Dropdown menu styles */
.menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fff; /* Nền trắng */
    display: none;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Hiệu ứng bóng đổ */
    border-radius: 4px; /* Góc bo tròn */
    border: 1px solid #ddd; /* Viền mỏng */
}

.menu li:hover > ul {
    display: block;
}

.menu li ul li {
    position: relative;
}

.menu li ul li a {
    display: block;
    padding: 10px 20px;
    color: #000; /* Chữ màu đen */
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.menu li ul li a:hover {
    background-color: #f2f2f2; /* Hiệu ứng hover nền xám nhạt */
    color: #007bff; /* Chữ chuyển thành màu xanh */
}

/* Sub-submenu styles (3rd level) */
.menu li ul li ul {
    top: 0;
    left: 100%;
    display: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Hiệu ứng bóng đổ */
    border-radius: 4px;
}

.menu li ul li:hover > ul {
    display: block;
}

/* Active state for the current menu item */
.menu > li.current-menu-item > a, /* Menu hiện tại */
.menu > li.current-menu-parent > a, /* Menu cha của menu hiện tại */
.menu > li.current-menu-ancestor > a { /* Menu tổ tiên của menu hiện tại */
    background-color: #f2f2f2; /* Nền xám nhạt */
    color: #007bff; /* Chữ màu xanh */
    font-weight: bold; /* Đậm chữ */
}

/* Submenu active */
.menu li ul li.current-menu-item > a {
    background-color: #e6e6e6; /* Nền xám nhạt hơn */
    color: #007bff; /* Chữ xanh */
    font-weight: bold;
}
.navbar-toggler {
    display: none;
}


@media (max-width: 768px) {

    .menu {
        display: block;
    }
    /* Ẩn menu trên mobile mặc định */
    .collapse {
        display: none;
        transition: all 0.3s ease-in-out;
    }

    /* Hiển thị menu khi active */
    .collapse.show {
        display: block;
    }

    /* Thiết kế nút mở menu */
    .navbar-toggler {
        display: block;
        background-color: #007bff;
        color: #fff;
        border: none;
        padding: 10px;
        font-size: 16px;
        cursor: pointer;
        margin: 10px 0;
    }

    /* Icon menu (dùng dấu 3 gạch ngang) */
    .navbar-toggler-icon {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #fff;
        margin: 5px 0;
    }

    /* Menu đa cấp */
    .menu-container {
        background-color: #fff; /* Nền menu */
        padding: 10px;
        border: 1px solid #ddd; /* Viền nhẹ */
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Hiệu ứng bóng đổ */
    }

    /* Dropdown trong mobile */
    .menu li ul {
        display: none; /* Ẩn submenu mặc định */
        margin-left: 10px; /* Canh vào một chút */
        border-left: 2px solid #ddd; /* Đường dẫn dọc */
    }

    .menu li.show > ul {
        display: block; /* Hiển thị submenu khi click */
    }

    /* Hiển thị icon chỉ mục trong menu nhiều cấp */
    .menu li > a::after {
        content: '▼'; /* Mũi tên chỉ xuống */
        float: right;
        margin-left: 10px;
        font-size: 12px;
        color: #000;
    }

    .menu li.show > a::after {
        content: '▲'; /* Mũi tên chỉ lên khi mở */
    }

    /* Ẩn nền và tạo màu sắc cho icon */
    .navbar-toggler {
        border: none; /* Không viền */
        background: none; /* Xóa nền */
        padding: 0; /* Xóa khoảng cách bên trong */
        cursor: pointer; /* Đổi con trỏ thành pointer */
    }

    .navbar-toggler i {
        font-size: 24px; /* Kích thước icon */
        color: #333; /* Màu icon */
        transition: color 0.3s ease; /* Hiệu ứng màu */
    }

    /* Hiệu ứng hover cho icon */
    .navbar-toggler:hover i {
        color: #007bff; /* Đổi màu icon khi hover */
    }

    .no-pd-menu-mobile {
        padding: 0;
    }

    .navbar-toggler {
        display: block;
    }
}


.custom-logo-link img {
    width: 200px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Đảm bảo swiper-container có chiều rộng đầy đủ */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

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

.top_bar {
    background: #0060a4;
    color: #ffffff;
    font-size: 12px;
    padding: 5px 0;
}

.top_bar_left span {
    margin-left: 10px;
}

.top_bar_right {
	display: none;
}

.top_bar_left span i {
    margin-right: 5px;
}

.top_bar_right span {
    margin-right: 10px;
}

.hot_tour_slider {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Ban đầu ẩn các nút */
.swiper-button-next,
.swiper-button-prev {
    opacity: 0;
    transition: opacity 0.5s ease; /* Hiệu ứng chuyển mượt mà */
    z-index: 10;
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    cursor: pointer;
    pointer-events: none; /* Ngăn người dùng nhấn vào nút khi chúng bị ẩn */
}

/* Khi rê chuột vào slider, các nút sẽ hiện ra */
.swiper-container:hover .swiper-button-next,
.swiper-container:hover .swiper-button-prev {
    opacity: 1;
    pointer-events: all; /* Cho phép người dùng nhấn vào nút khi chúng hiện ra */
}

.list_sale_banner:hover .swiper-button-next,
.list_sale_banner:hover .swiper-button-prev {
    opacity: 1;
    pointer-events: all; /* Cho phép người dùng nhấn vào nút khi chúng hiện ra */
}

.logo_partner:hover .swiper-button-next,
.logo_partner:hover .swiper-button-prev {
    opacity: 1;
    pointer-events: all; /* Cho phép người dùng nhấn vào nút khi chúng hiện ra */
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}


.tour-thumbnail img {
    width: 100%;
    height: auto;
}

.tour-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}

.tour-excerpt {
    margin: 10px 0;
}

.tour-read-more {
    background-color: #007aff;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
}


.visa-service-layout .left-column .left-top-item {
    margin-bottom: 30px; /* Khoảng cách dưới của bài viết ở hàng trên cùng của cột trái */
}

.visa-service-layout .left-column .left-bottom-items .card {
    margin-bottom: 20px;
}

.visa-service-layout .right-column .right-item {
    margin-bottom: 30px; /* Khoảng cách giữa các bài viết ở cột phải */
}

.visa-service-layout .card-img-top {
    max-height: 250px; /* Điều chỉnh kích thước ảnh đại diện cho vừa vặn */
    overflow: hidden;
}

.visa-service-layout .card-img-top img {
    object-fit: cover; /* Giúp ảnh phù hợp với kích thước khung mà không bị biến dạng */
}

.visa-service-layout .card-body {
    padding: 10px;
}

.visa-service-layout .card-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.visa-service-layout .card-title a {
    color: #000000;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.visa-service-layout .card-title a:hover {
    text-decoration: underline;
}

.visa-service-layout .card-text {
    font-size: 14px;
}

.visa-service-layout .btn {
    margin-top: 10px;
}


.visa-service-layout .right-item .card {
    border: none;
    background-color: transparent;
}

.visa-service-layout .right-item .card-img img {
    width: 250px; /* Điều chỉnh kích thước ảnh cho nhỏ hơn */
    height: 120px;
    object-fit: cover;
    border-radius: 7px;
}

.visa-service-layout .right-item .card-body {
    padding-left: 0;
    padding-top: 0;
}

.visa-service-layout .right-item .card-title {
    font-size: 16px; /* Điều chỉnh kích thước tiêu đề */
    font-weight: bold;
    margin: 0; /* Bỏ khoảng cách trên và dưới của tiêu đề */
}

.visa-service-layout .right-item .card-title a {
    text-decoration: none; /* Bỏ gạch chân liên kết */
    color: #000; /* Màu tiêu đề */
}

.visa-service-layout .right-item .card-title a:hover {
    text-decoration: underline; /* Hiệu ứng hover cho tiêu đề */
}

.cam_nhan_khac_hang .card-img-top img {
    width: 150px; /* Đặt chiều rộng của ảnh */
    height: 150px; /* Đặt chiều cao của ảnh */
    object-fit: cover; /* Đảm bảo ảnh được cắt đều trong khung */
    border-radius: 50%; /* Làm cho ảnh tròn */
    display: block;
    margin: 0 auto; /* Căn giữa ảnh trong thẻ card */
}

.intro_block {
    position: relative;
    background: url('../images/bg-travel-vs1.png') center no-repeat;
    width: 1056px;
    height: 215px;
    margin: 50px auto 50px;
    background-size: 100% 100%;
    margin-bottom: 80px;
}

.intro_block .item {
    position: absolute;
    width: 144px;
    height: 144px;
    border-radius: 72px;
    margin: auto;
    display: table;
    transition: all .35s;
}

.intro_block .item:nth-child(1) {
    bottom: 0;
    left: 16%;
}

.intro_block .item:nth-child(2) {
    top: 0;
    left: 42.6%;
}

.intro_block .item:nth-child(3) {
    bottom: 0;
    right: 17.8%;
}

.intro_block .item .avt img {
    transition: all .35s;
}

.intro_block .avt img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.intro_block .item .avt {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    border-radius: 50%;
    transition: all .35s;
}

.intro_block .bg-1 {
    background: #73c04a;
}

.intro_block .bg-2 {
    background: #eb5b49;
}

.intro_block .bg-3 {
    background: #095184;
}

.intro_block .avt {
    overflow: hidden;
}

.intro_block .item .desc {
    top: 100%;
    margin: 15px auto 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.intro_block .item .desc p {
    color: #333333;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    white-space: nowrap;
}

.tour_hot_block {
    background: rgb(245, 244, 244);
}

.tour_nuoc_ngoai {
    background: rgb(245, 244, 244);
}

.cam_nhan_khac_hang {
    background: rgb(245, 244, 244);
}

.space_block {
    margin-top: 50px;
    padding-top: 10px;
}

.btn_read_more {
    padding-bottom: 30px;
}

.title-block {
    text-align: center;
}

.cam_nhan_khac_hang {
    padding-top: 30px;
}

.cam_nhan_khac_hang .title-block {
    padding-bottom: 30px;
}

.tour_nuoc_ngoai.space_block {
    padding-top: 30px;
}

.tour_nuoc_ngoai .title-block {
    padding-bottom: 30px;
}

.dich_vu_visa .title-block {
    padding-bottom: 30px;
}

.tour_trong_nuoc .title-block {
    padding-bottom: 30px;
}

.tour_hot_block .title-block {
    padding: 30px 0;
}

.title_why_choose {
    padding: 30px 0;
    text-align: center;
}

.bg-bottom-title {
    margin-left: auto;
    margin-right: auto;
}

.bg-bottom-title {
    height: 14px;
    background: url('../images/bg-title-bottom.png') center no-repeat;
    margin-bottom: 14px;
}

/* Đảm bảo tất cả các slide (card) có cùng chiều cao */
.testimonial-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Kéo dài khối để đảm bảo chiều cao bằng nhau */
}

.testimonial-slider .card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Đảm bảo thẻ card bao phủ toàn bộ chiều cao của slide */
}

.testimonial-slider .card-img-top {
    width: 100%; /* Đảm bảo ảnh đại diện chiếm toàn bộ chiều rộng */
    height: auto;
    padding: 15px;
}

.testimonial-slider .card-body {
    flex: 1; /* Để nội dung trong card-body chiếm phần còn lại của chiều cao card */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Cân bằng nội dung trong card-body */
    padding-top: 5px;
}

.testimonial-slider .card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center; /* Căn giữa tiêu đề */
}

h4.testimonial-subtitle {
    font-size: 14px;
    text-align: center;
}

.testimonial-stars {
    font-size: 18px; /* Kích thước của biểu tượng sao */
}

.testimonial-stars i {
    margin: 0 2px; /* Khoảng cách giữa các sao */
}

.testimonial-slider .card-text {
    font-size: 14px;
    text-align: justify; /* Đảm bảo nội dung căn đều */
    flex-grow: 1; /* Đảm bảo nội dung giãn nở phù hợp */
    font-style: italic;
}

.post-updated-time {
    color: #ccc;
    font-size: 14px;
}

.testimonial-slider .swiper-pagination {
    margin-top: 20px; /* Cách phần pagination ra khỏi các slide */
}

.swiper-button-next-5, .swiper-button-prev-5 {
    color: #333; /* Màu sắc của nút điều hướng */
}

.cam_nhan_khac_hang {
    background-image: url('../images/bg-feedback.png');
    background-repeat: no-repeat;
    background-size: 100%;
    padding-bottom: 40px;
}

.breadcrumb-bg {
    background: #f1f1f1;
}

.breadcrumb-bg .breadcrumb {
    margin-bottom: 0;
    font-size: 13px;
}

.breadcrumb-bg ol {
    margin-left: 0;
}

.breadcrumb-bg ol a {
    color: rgba(102, 102, 102, .7);
    text-decoration: none;
}

.breadcrumb-bg ol nav {
    color: rgba(102, 102, 102, .7)
}

.related-posts-sidebar {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.related-posts-sidebar h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.related-posts-sidebar ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

.related-posts-sidebar li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.related-posts-sidebar a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
}

.related-posts-sidebar a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.related-posts-sidebar .img-thumbnail {
    border: none; /* Remove border around images */
}

.related-posts-sidebar .thumbnail-wrapper {
    flex-shrink: 0; /* Ensure images stay the same size */
    margin-left: 10px;
}

#back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #f8d700;
    color: #333;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
}

.intro_block .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.intro_block .item {
    text-align: center;
}

.avt {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
}

.desc p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}


.list_sale_banner {
    overflow: hidden;
    position: relative;
}


#back-to-top:hover {
    background-color: #e6b800;
}


footer {
    background-color: #222;
    color: #fff;
}

footer .text-warning {
    color: #f9c922 !important;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #f9c922;
    text-decoration: none;
}

footer .social-icons a {
    font-size: 20px;
    margin-right: 15px;
}

.term-dich-vu-visa .card-title a {
    font-size: 20px;
    color: #000000;
    text-decoration: none;
}

.term-dich-vu-visa .card-title {
    line-height: 0.8;
}

#scrollspy-container {
    position: relative;
    overflow-y: auto; /* Allow scrolling when content exceeds view height */
}

section {
    padding-top: 28px;
}

/* General table styling */
table {
    width: 100%; /* Full width */
    border-collapse: collapse; /* Remove double borders */
    font-family: Arial, sans-serif; /* Set font */
    margin: 20px 0; /* Margin above and below */
}

/* Table header styling */
thead th, tbody td {
    padding: 12px; /* Cell padding */
    text-align: center; /* Center-align text */
    border: 1px solid #ddd; /* Light border for each cell */
}

/* Header background and text color */
thead th {
    background-color: #4CAF50; /* Dark green header background */
    color: white; /* White text */
    font-weight: bold;
}

/* Alternating row colors for better readability */
tbody tr:nth-child(even) {
    background-color: #f9f9f9; /* Light gray for even rows */
}

tbody tr:nth-child(odd) {
    background-color: #fff; /* White for odd rows */
}

/* Highlight row on hover */
tbody tr:hover {
    background-color: #f1f1f1; /* Light hover effect */
}

/* Bold text styling for important content */
td strong {
    color: #333; /* Darker color for strong text */
}

/* Base styling for links */
.scroll-link {
    color: #333; /* Default link color */
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    position: relative;
    font-weight: bold;
    transition: color 0.3s;
}

/* Bottom border for the active link */
.scroll-link.active {
    color: #007bff; /* Optional color change for the active link */
}

.scroll-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Position border slightly below text */
    width: 100%;
    height: 3px; /* Thickness of the border */
    background-color: #007bff; /* Border color */
    border-radius: 2px; /* Slight rounding for a softer look */
    transition: width 0.3s ease; /* Animation for width */
}

/* Hover effect for links */
.scroll-link:hover {
    color: #007bff; /* Optional color change on hover */
}

/* Hover effect for border */
.scroll-link:hover::after {
    width: 100%;
}

#navbar {
    position: relative;
    top: 0;
    background-color: #f8f8f8;
    padding: 15px 10px;
    width: 100%;
    z-index: 1000;
}

#carouselExampleIndicators .carousel-inner img {
    height: 400px; /* Adjust this value as needed */
    object-fit: cover; /* Ensures images are cropped to fill the height */
    width: 100%; /* Ensures images fill the width of the container */
}

#navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 99999;
}

#navbar a {
    margin-right: 10px;
    text-decoration: none;
    color: #333;
}

section h2 {
    margin-top: 0;
}


/* ボタン */
.toggle-btn {
    /* スタイルのリセット */
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    margin: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    width: 32px;
    height: 32px;
}

.toggle-btn:focus {
    outline: none;
}

.toggle-icon {
    position: relative;
    width: 32px;
    height: 2px;
    background-color: #333;
    content: '';
    display: inline-block;
    transition: background-color 0.2s;
}

.toggle-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 32px;
    height: 2px;
    background-color: #333;
    transform: translateY(-8px);
    transition: transform 0.2s;
}

.toggle-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 32px;
    height: 2px;
    background-color: #333;
    transform: translateY(8px);
    transition: transform 0.2s;
}

/* バツ印 */
.is-open .toggle-icon {
    background-color: transparent;
}

.is-open .toggle-icon::before {
    transform: rotate(45deg);
}

.is-open .toggle-icon::after {
    transform: rotate(-45deg);
}

.menu-box {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    height: 100vh;
    min-height: 500px;
    padding-top: 32px;
    z-index: 9;
}

.menu-box-nav ul {
    list-style: none;
    margin-left: 20px;
}
.menu-box-nav li {
    margin: 10px 0;
}

.menu-box-nav a {
    color: #fff !important;
    text-decoration: none;
    font-size: 20px;
}

.toggle-btn {
    display: none;
}

.menu-box {
    display: none;
}

#tour-search-results {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.tour-search-result-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tour-search-result-list li {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.tour-search-result-list li a {
    text-decoration: none;
    color: #333;
}
#page-search-tour a {
    text-decoration: none;
    color: #000000;
}
.tour-search-result-list li a:hover {
    text-decoration: underline;
}
.slider_banner_home {
    position: relative;
}
.form-search-tour {
    position: absolute;
    width: 100%;
    bottom: 40px;
    z-index: 999;
}
/* Tùy chỉnh cho khung kết quả tìm kiếm */
#tour-search-results {
    display: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tour-highlights ul {
    margin-left: 0;
}

/* Kết quả tìm kiếm là các phần tử danh sách theo kiểu list-group của Bootstrap */
#tour-search-results .list-group-item {
    padding: 10px 15px;
    color: #333;
    /*border: 1px solid #ddd;*/
    border-radius: 0;
}
#tour-search-input {
    padding-left: 10px;
}
.bl_info_tour.fixed {
    position: fixed;
    top: 85px;
    width: 414px;
    z-index: 10;
}
#tour-search-results .list-group-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
    text-decoration: none;
}
.title-single-tour {
    font-size: 25px;
    font-weight: 700;
}

.popup_booking_content {
    top: 54px;
}
.tour-highlights .title_info_tour {
    background: #ffc107;
    color: #ffffff;
    font-size: 20px;
    padding: 5px;
}

.home .list_tour_slide .swiper-slide .card.h-100 img {
    height: 300px;
    object-fit: cover;
}
.home .list_tour_slide .h-100 {
    text-decoration: none;
}
#slider_tour_hot {
    padding-bottom: 35px;
}
.list_tour_slide .card-title {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 700;
}
.bg-dark {
    --bs-bg-opacity: 1;
    background-color: #11adcc !important;
}

.post, .page {
    margin-bottom: 0;
}

.logo_partner .container{
    overflow: hidden;
}

.list_logo_partner {
    position: relative;
}

.logo_partner.space_block {
    padding-bottom: 50px;
}

/* CSS cho danh sách sale */
footer ul {
    list-style-type: none; /* Bỏ chấm đầu dòng */
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 15px; /* Khoảng cách giữa các mục */
}

footer ul li strong {
    display: block; /* Hiển thị tên và số Zalo trên các dòng riêng */
    font-weight: bold;
    color: #ffffff; /* Đặt màu chữ cho tên */
}

footer ul li strong + span {
    color: #ffffff; /* Đặt màu chữ cho số Zalo */
}

footer ul li a {
    text-decoration: none;
}
.list_tour_slide .card-body {
    font-size: 16px;
    max-height: 250px;
}

.list_tour_slide .card-body p {
    margin-bottom: 8px;
}

ul.list-unstyled li {
    display: flex;
}

ul.list-unstyled li .text_label {
    margin-right: 7px;
}
/* Mega Menu Styles */
#tour-list-container {
    position: absolute;
    width: 600px; /* Điều chỉnh kích thước phù hợp với yêu cầu */
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    z-index: 1000; /* Đảm bảo menu hiển thị phía trên */
    display: none; /* Để mặc định là ẩn và chỉ hiện khi cần */
}

/* Hiển thị menu khi có hover */
.dropdown:hover #tour-list-container {
    display: block;
}

/* Mega Menu Styles */
#tour-list-container {
    position: absolute;
    width: 600px; /* Kích thước mặc định trên desktop */
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    z-index: 1000; /* Đảm bảo menu hiển thị phía trên */
    display: none; /* Để mặc định là ẩn và chỉ hiện khi cần */
}

/* Header của mỗi nhóm */
#tour-list-container h6 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Liên kết trong header nhóm */
#tour-list-container h6 a {
    color: #333;
    text-decoration: none;
}

#tour-list-container h6 a:hover {
    text-decoration: underline;
}

/* Danh sách các tour */
#tour-list-container ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    column-count: 2; /* Mặc định chia thành 2 cột trên desktop */
    column-gap: 20px;
}

/* Mục tour */
#tour-list-container li {
    margin-bottom: 5px;
}
#tour-list .card-body .card-title {
        overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
        font-size: 16px;
}

.card-body .card-title a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
     font-size: 16px;
     text-decoration: none;
}
#tour-list-container li a {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text_underline_none {
    text-decoration: none;
}

.logo_company_ft img {
    background: #ffffff;
}

#tour-list-container li a:hover {
    text-decoration: underline;
}

/* CSS cho hiệu ứng tuyết */
.snowflake {
    position: fixed;
    top: -20px; /* Đảm bảo tuyết xuất hiện trên cùng */
    width: 20px;
    height: 20px;
    color: #f8f9fa;
    font-size: 30px;
    user-select: none;
    z-index: 9999;
    animation: snow-fall 10s linear infinite;
}


@keyframes snow-fall {
    0% {
        transform: translateY(-100px);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* CSS cho hiệu ứng hoa đào */
.petal {
    position: fixed;
    top: -20px; /* Đảm bảo hoa đào xuất hiện trên cùng */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 9999; /* Đảm bảo không bị che khuất */
    animation: petal-fall 6s linear infinite;
}

body, html {
    height: 100%;
    margin: 0;
    position: relative; /* Đảm bảo các hiệu ứng nằm trong body */
}

@keyframes petal-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(180deg);
        opacity: 0;
    }
}

.tax-category_du_hoc a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
}

.tax-visa_category a {
     text-decoration: none;
    color: #000000;
    font-size: 16px;
}

.tax-category_dinh_cu a {
    text-decoration: none;
    color: #000000;
    font-size: 16px; 
}

/* Thiết lập cho mobile */
@media (max-width: 768px) {
    /* Đặt menu mega thành toàn màn hình trên thiết bị di động */
    #tour-list-container {
        position: fixed;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        /* height: 100vh; */
        overflow-y: auto;
        padding: 20px;
        z-index: 1000;
    }

    /* Chuyển các phần tử trong mega menu sang dạng một cột */
    #tour-list-container ul {
        column-count: 1;
    }

    #tour-list-container h6 {
        font-size: 1.3rem;
        margin-top: 20px;
    }

    /* Liên kết thoát menu trên di động */
    #tour-list-container .close-menu {
        display: block;
        font-size: 1.5rem;
        text-align: right;
        margin-bottom: 15px;
        cursor: pointer;
    }
}


/* CSS chỉ định khi có nhiều hơn 8 item */
.tour-list-container[data-count="more-than-8"] {
    grid-template-columns: repeat(2, minmax(150px, 1fr)); /* Chia thành 2 cột */
    max-height: 300px; /* Đặt chiều cao tối đa và cho phép cuộn */
    overflow-y: auto;
}

.tour-list-container[data-count="more-than-15"] {
    grid-template-columns: repeat(3, minmax(150px, 1fr)); /* Chia thành 3 cột nếu có nhiều hơn 15 tour */
}

@media (max-width: 1024px) {

    .related-posts-sidebar li {
        display: block !important;
    }

    .menu_top_bar {
        display: flex;
        justify-content: space-between;
        /*position: fixed;*/
        /* top: 35px; */
        left: 0;
        z-index: 99;
        background: #ffffff;
        width: 100%;
        max-width: 100%;
    }

    .menu_top_bar_w {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .custom-logo-link img {
        width: 200px;
        position: relative;
        top: 8px;
    }

    #navbar {
        display: none;
    }
    .site-branding {
        display: flex;
        justify-content: space-between;
        width: auto;
        width: 100%;
    }
    .intro_block {
        background-size: auto;
        width: 100%;
        height: auto;
    }

    .intro_block .item {
        position: relative;
        top: initial !important;
        left: initial !important;
        right: initial !important;
        bottom: initial !important;
        margin-bottom: 70px;
    }

    .toggle-btn {
        display: block;
    }


    .top_bar {
        display: none;
    }

    .col-12.col-md-2.site-branding {
        display: flex;
        justify-content: space-between;
    }

    .navbar {
        position: static;
    }

    .toggle-btn {
        position: relative;
        z-index: 10;
    }

    .is-open .toggle-icon::before {
        background-color: #fff;
    }

    .is-open .toggle-icon::after {
        background-color: #fff;
    }

}

@media (max-width: 767px)  {
    .form-search-tour {
        position: static;
        margin-top: 20px;
    }
}





