﻿.custom-indicators {
    position: relative;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

    .custom-indicators [data-bs-target] {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background-color: #f47b00;
        opacity: 0.5;
        border: none;
        transition: all 0.3s ease;
    }

    .custom-indicators .active {
        opacity: 1;
        background-color: #f47b00;
        transform: scale(1.3);
    }

@media (max-width: 768px) {
    .custom-indicators {
        gap: 3px;
        margin-top: 6px;
    }

        .custom-indicators [data-bs-target] {
            width: 8px;
            height: 8px;
        }
}

/* Carousel */
    .carousel-inner img {
      
      object-fit: fill;
      border-radius: 8px;
    }
    .special-carousel .carousel-inner img {
        height: 500px;
    }

    .small-carousel .carousel-inner img {
        height: 350px;
    }
    
        @media (max-width: 768px) {
            .special-carousel .carousel-inner img {
                height: 200px;
            }

            .small-carousel .carousel-inner img {
                height: 200px;
            }
        }
}

