.carousel-container {
    /* width: 80%; */
    width: 100%;
    margin: auto;
}

.item {
    text-align: center;
    padding: 10px;
}

.item img {
    width: 100px;
    /* height: 100px; */
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
}

.item p {
    margin-top: 10px;
    font-weight: bold;
}

/* Custom arrow styles */
.owl-nav button {
    background-color: #f0f0f0 !important;
    border: none !important;
    color: #b0b0b0 !important;
    font-size: 19px !important;
    padding: 10px !important;
    position: absolute !important;
    top: 50% !important;
    z-index: 10 !important;
    cursor: pointer !important;
    border-radius: 50% !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
}

.owl-nav .owl-prev {
    left: 0;
    transform: translateY(-50%);
}

.owl-nav .owl-next {
    right: 0;
    transform: translateY(-50%);
}

#carousel {
    display: flex !important;
    justify-content: center !important;
}

.subtxt {
    color: #2e2e2d !important;
}

.facss {
    font-size: 14px !important;
}

/* Apply only for screens 1000px and above (desktop) */
@media (min-width: 1000px) {
    .owl-stage {
        display: flex !important;
        justify-content: center !important;
    }
}

@media (max-width: 768px) {

    .item img {
        height: 150px;
    }
}