.html {
    scroll-behavior: smooth;
}

#scrollingNav-detail {
    margin-top: 3.3em;
}

.scrolling-nav-detail {
    display: none;
    position: fixed;
    top: 30px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent items from wrapping */
}

.scrolling-nav-links {
    list-style: none;
    margin-top: 0;
    padding: 0;
    display: flex; /* Use flexbox for horizontal layout */
}

.scrolling-nav-links li {
    margin: 0;
    padding: 10px 5px; /* Add horizontal padding */
}

.scrolling-nav-links a {
    text-decoration: none;
    color: #333;
}

@media (max-width: 767px) {
    .scrolling-nav-detail {
        display: none; /* Initially hide on mobile */
    }

    .scrolling-nav-detail.show {
        display: block; /* Show when activated */
    }
}

.scrolling-nav-links a {
    text-decoration: none;
    color: #333;
}

.scrolling-nav-links a.active {
    color: #007bff;
    font-weight: bold;
}



.dropdown-content-bcb,
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    cursor: pointer;
}

.dropdown-content-bcb a,
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content-bcb a:hover,
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.bottom-contact-banner:hover .dropdown-content-bcb,
.comment-form:hover .dropdown-content {
    display: block;
}

.dropdown-content-bcb {
    bottom: 5em;
}

.swiper-container {
    width: 100%;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    height: auto;
}

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

.image-detail {
    width: auto;
    height: auto; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-detail img {
    max-width: 100%;
    height: auto;
    display: block;
}