@keyframes shimmer {
    to {
        background-position: 100%
    }
}

.custom-carousel {
    margin: 5rem 0px;
    overflow: hidden;
    background-color: #e2e7ff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.carousel-track {
    background-color: azure;
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}

.custom-carousel-item {
    flex: 0 0 auto;
    width: 10rem;
    height: 8rem;
    margin: 10px;
    /* color: white; */
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-size: cover;
    background-size: 95% 95%;
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-control-next {
    justify-content: end;
    margin-right: 1rem;
}

.carousel-control-prev {
    justify-content: start;
    margin-left: 1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    padding: 2rem;
    background-color: red;
    border-radius: 50%;
}

div#carouselExampleInterval .carousel-indicators button {
    background-color: red ;
    height: 0.6rem ;
    width: 2.5rem ;
    border-radius: 12px;
}
/* carousel-indicators */


.services-container .card {
    width: 19rem;
    margin-bottom: 1rem;
    box-shadow: 0px 0px 5px 3px #0000005e;
}

.services-container .card .card-img {
    width: auto;
    height: 12rem;
    background-position: center;
    background-size: 100%;
}