/* Custom responsive styles */
@media (max-width: 991px) {
    /* Hide top bar in mobile view */
    .top_bar.style_one {
        display: none;
    }
}

/* Show top bar for larger screens */
@media (min-width: 992px) {
    .top_bar.style_one {
        display: block;
    }
}
