.sticky-header-custom {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 767px) {
    .mt-1{
        margin-top: 1.5vh;
    }
}
.mt-1m{
    margin-top: 1.5vh;
}
/* Mặc định cho PC */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Khi màn hình nhỏ (mobile) */
@media (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
    html{
        overflow-x: hidden !important;
    }
    .tp-leftarrow,
    .tp-rightarrow {
        background-color: rgba(255, 255, 255, 0.1) !important;
    }
}
.sticky-header-2 {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: white; /* Điều chỉnh theo ý bạn */
    transition: all 0.3s;
}
