.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    z-index: 15;
}

.carousel-indicators li {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #000 !important;
    border: none !important;
    margin: 0 5px !important;
    padding: 0 !important;
    opacity: .25;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-indicators li.active {
    background-color: #000 !important;
    opacity: 1;
    transform: scale(1.2);
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: rgba(120, 120, 120, 0.7) !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-indicators button.active {
    background-color: #000 !important;
    opacity: 1;
    transform: scale(1.2);
}

[data-ride="carousel"] .carousel-indicators {
    bottom: 20px;
} 

.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, rgba(0,0,0,.7) 0, transparent); */
    z-index: 1;
}

.carousel-item img {
    display: block;
    width: 100%;
    object-fit: cover;
    /* object-fit: none !important; */
    /* height: 155px !important; */
}

.mobile_banner .carousel-item img {
    height: 300px;
}

.carousel-item .carousel-caption {
    position: relative;
    z-index: 2;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 2;
} 