.header-strip {
        background-color: #ffffff; /* Fully white background */
        padding: 10px 0;
        position: fixed; /* Fix it to the top of the page */
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999; /* Ensure it appears on top of other content */
        border-bottom: none; /* Remove any borders */
        box-shadow: none; /* Remove any shadows */
        border-top: 1px solid black;

    }
    
    .container-box {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0 25px;
    }
    
    .header-item {
        font-size: 16px;
        color: #333;
        text-align: center;
    }
    
    .main-content {
        padding-top: 50px; /* Ensure content below the header is not hidden */
    }
    #bringer-header{
            position: sticky; top: 35px;
        }
    
    @media (max-width: 768px) {
         .header-strip {
            display: none;
        }
        #bringer-header{
            position: sticky; top: 0;
        }
    
       
    }