.errorcls {
    text-align: center;
    color: red;
}




.global-search-form {
    background-color: #ffffff;
    border-radius: 10px;
    max-width: 400px !important;
    padding: 0px !important;
    margin-bottom: 20px !important;
    border: 1px solid #ededed;
    overflow: hidden;
    margin-left: 0px !important;
    margin-right: auto !important;
}

.global-search-form input {
    padding: 10px;
    width: 100%;
    border: none;
    outline: none;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: #CD4A01;
    padding: 5px;
}

.marquee-container a {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    animation: scroll-left 40s linear infinite;
}

@keyframes scroll-left {
    from {
        transform: translateX(100%);
        /* Starts off-screen right */
    }

    to {
        transform: translateX(-100%);
        /* Moves fully off-screen left */
    }
}




.new_add_box .owl-nav {
    display: none;
}



@media (max-width:767px) {
    .hero2 .row img {
        max-width: 100%;
    }
}




@media (max-width:767px) {
    .marquee-container a {
        animation: scroll-left 20s linear infinite;
    }
}