/* breadbg */
.breadcumb-wrapper {
    background-image: url('images/brown-cow-eatting-grass_1150-10814.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 30px 0;

    /* Adjust as needed */
}

.box-thumb img {
    width: 100%;
    /* Ensures the image takes full width of its container */
    height: 250px;
    /* Set a fixed height */
    object-fit: cover;
    /* Ensures the image scales properly without distortion */
    border-radius: 10px;
    /* Optional: to match design aesthetics */
}



/* share button */
.share-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.share-btn:hover {
    background-color: #0056b3;
}



/* Optional Overlay */
.breadcumb-wrapper[data-overlay="theme"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust overlay opacity */
}

/* marque silder- */
.marquee-container {
    height: 200px;
    /* Adjust height as needed */
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    flex-direction: column;
    position: absolute;
    animation: marqueeScroll 5s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}