
.main_slideshow {
    height: auto;
    min-height:100%;
    width: 100%; /* Or set specific width */
}

@media (max-width: 750px) {




    .swiper-button-prev,
    .swiper-button-next {
       opacity:0 !important;
    }

}

@media (min-width: 1200px) {
    .main_slideshow {
        padding: 20px; /* Add padding */
    }

    .main_slideshow_swiper-slide img{
        border-radius: 20px;
    }
}

.main_slideshow_swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .main_slideshow_swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

.main_slideshow_swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: white;
    border: 2px solid var(--blue); /* Optional: Add a border */
    opacity: 1; /* Make bullets fully visible */
}

.main_slideshow_swiper-pagination-bullet-active {
    background-color: var(--blue); /* Active bullet color */
}


/* Correct classes for Swiper pagination bullets */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: white;
    border: 1px solid var(--blue); /* Optional: Add a border */
    opacity: 1; /* Make bullets fully visible */
}

.swiper-pagination-bullet-active {
    background-color: var(--blue); /* Active bullet color */
}



.swiper-button-prev,
.swiper-button-next {
    color: white !important;
    border-radius: 50%;
    font-size: 10px !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    background-color: var(--blue);
    opacity: 0.5;
}


    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 25px !important;
    }
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        opacity: 1;
    }
