﻿.circle {
    width: 200px; /* Adjust the size of the circle */
    height: 125px;
    background-color: #474645;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-left: 1%;
    margin-right: 1%;
    flex-basis: 30%;
}

.carousel-indicators .active {
    background-color: #C22821 !important;
}

.carousel-indicators > button {
    background-color: #777777 !important;
    border-radius: 50%;
    width: 0.5em !important;
    height: 0.5em !important;
}

.carousel_image {
    width: 100%;
    object-fit: scale-down;
    padding: 10px;
}

.carousel_slide {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

@media(max-width: 650px) {
    .carousel_slide {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        flex-basis: 40%;
    }

    .circle {
        width: 400px; /* Adjust the size of the circle */
        height: 125px;
        background-color: #474645;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        margin-left: 1%;
        margin-right: 1%;
        flex-basis:25%
    }
}