﻿.swiper {
    width: 100%;
    height: 100%;
    /* Set the height to 700px */
}

.swiper-slide img {
    width: 100%;

    object-fit: cover;
}

.swiper-pagination-bullet {
    background: #fff;
    border-radius: 4px;
    /* Rounded rectangle shape */
    opacity: 0.5;
    width: 20px;
    /* Custom width */
    height: 4px;
    /* Custom height */

}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
    /* Active bullet color */
}

.swiper-button-prev {
    background-image: url("../static/picture/left.png");
    /* Remove default arrow icons */
    color: rgb(106, 94, 165);
    /* Arrow color */
    font-size: 24px;
    /* Arrow size */
}

.swiper-button-next {}

.swiper-button-prev::before {
    content: url();
    /* Remove default arrow icons */
}

.swiper-button-next::before {
    content: url();
}

.swiper-button-prev {
    left: 10px;
    /* Adjust left arrow position */
}

.swiper-button-next {
    right: 10px;
    /* Adjust right arrow position */
}

.swiper-pagination {
    position: absolute;
    bottom: 4px !important;
    /* Adjust pagination position */
    width: 100%;
}

.image-title {
    position: absolute;
    bottom: 0px;
    /* Adjust the position to be above the pagination */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    color: #fff;
    text-align: center;
    padding: 5px 0;
    font-size: 18px;
}