.top-menu .hotline{
    color: #000;
    font-size: 14px;
}
/* --- SỬA LỖI TẠI ĐÂY --- */
/* Mặc định ẩn tất cả caption đi để tránh bị chồng lên nhau khi tải trang */
.apollo-html-caption {
    display: none; /* Dòng quan trọng nhất để sửa lỗi */

    /* Các thuộc tính cũ giữ nguyên */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* display: flex;  <-- Bỏ dòng này vì nó xung đột với display: none */
    justify-content: center;
    align-items: center;
}

/* --- CÁC PHẦN CSS KHÁC GIỮ NGUYÊN --- */

/* Căn giữa khối text (sử dụng Flexbox thay thế cho cách cũ để tương thích tốt hơn với Nivo) */
.slide-caption.caption_1 {
    text-align: center;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    
    /* Thêm Flexbox vào đây để căn giữa nội dung bên trong caption */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Chiều cao tối đa để Flexbox căn giữa dọc */
}

/* Style cho Tiêu đề MỚI */
.custom-hero__title {
    color: #ffffff;
    font-size: 50px; 
    font-weight: 300; 
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Tạo đường gạch ngang nằm ngay dưới tiêu đề */
.custom-hero__title::after {
    content: "";
    display: block;
    width: 500px; 
    max-width: 80%; 
    height: 1px;
    background-color: #ffffff;
    margin: 15px auto; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Style cho Mô tả MỚI */
.custom-hero__desc {
    color: #ffffff;
    font-size: 30px; 
    font-weight: 300;
    line-height: 1.4;
    margin-top: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Ẩn nút Button (tùy chọn) */
.slide-caption.caption_1 .btn-slide {
    display: none; 
}

/* --- Responsive cho Mobile --- */
@media (max-width: 768px) {
    .custom-hero__title {
        font-size: 32px; 
    }
    .custom-hero__desc {
        font-size: 18px; 
    }
    .custom-hero__title::after {
        width: 300px;
        margin: 10px auto;
    }
} 
.header-menu .menus > .menu__item > .menu__link{
    outline:none;
    font-size:15px;
    font-weight:700;
}
.menus__dropdown .menus__dropdown__link{
    font-size:14px;
}
.footer .logo img{
    width:120px !important;
}