/* Slider container */
.slider-container {
    position: relative;
    margin: 2rem 0;
    background: #111;
    padding: 50px 0 50px 0;
}

@media screen and (max-width: 990px) {
    .slider-container {
        position: relative;
        margin: 2rem 0;
        background: #111;
        padding: 1px 0 50px 0;

    }
}



.slider-container h3,
.slider-container p {
    margin: 0 auto;
    padding: 0 2rem 1rem;
    max-width: 420px;
}

.slider-container h3 a,
.slider-container p a {
    color: inherit;
}

/* Swiper JS styles */
.swiper-full {
    width: 100%;
    height: 100%;
    padding: 1rem 0 3rem;
    margin: 4rem 0;
    overflow: hidden;
}

.swiper-full .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56%;
}

@media screen and (max-width: 990px) {
    .swiper-full .swiper-slide {
        width: 88%;
    }
}

.swiper-full .swiper-slide:not(.swiper-slide-active) {
    overflow: hidden;
}

.swiper-full .swiper-slide:not(.swiper-slide-active) img {
    opacity: 0.6;
    /* filter: blur(5px); */
}


/* Uniform image size */
.swiper-full .swiper-slide img {
    display: block;
    width: 100%;
    height: 500px;
    /* Fixed height */
    object-fit: cover;
    border-radius: 2rem;
}

@media screen and (max-width: 1100px) {
    .swiper-full .swiper-slide img {
        display: block;
        width: 100%;
        height: 350px;

        /* Fixed height */
        object-fit: cover;
        border-radius: 2rem;
    }
}

/* Navigation buttons */
.swiper-full .swiper-button-next,
.swiper-full .swiper-button-prev {
    color: #fff;
    height: 40px;
    width: 40px;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    right: 14px;
    bottom: -4px;
    top: auto;
}

.swiper-full .swiper-button-next:after,
.swiper-full .swiper-button-prev:after {
    font-size: 1rem;
}

.swiper-full .swiper-button-prev {
    left: 14px;
}

/* @media screen and (max-width: 991px) {
    .swiper-full .swiper-pagination {
        display: none !important;
       
    }
} */

/* Pagination styling */
.swiper-full .swiper-pagination {
    position: absolute;
    left: 50%;
    display: block;
    text-align: center;
    font-size: 0;
    line-height: 0;
    padding: 8px;
    margin: 20px 0 0 0;
    width: auto;
    transform: translate(-50%, 20%);
    border-radius: 100px;
    /* background-color: rgba(0, 0, 0, 0.2); */
    /* backdrop-filter: blur(10px); */
    background: #fff;
    padding: 10px;
}

@media screen and (max-width: 990px) {
    .swiper-full .swiper-pagination {
        position: absolute;
        left: 50%;
        display: block;
        text-align: center;
        font-size: 0;
        line-height: 0;
        padding: 8px;
        margin: 20px 0 0 0;
        width: 350px;
        transform: translate(-50%, 20%);
        border-radius: 100px;
        /* background-color: rgba(0, 0, 0, 0.2); */
        /* backdrop-filter: blur(10px); */
        background: #fff;
        padding: 5px;
    }

}

.swiper-full .swiper-pagination .swiper-pagination-bullet {
    height: 0.8rem;
    width: 0.8rem;
    border-radius: 1rem;
    transition: all 0.4s ease-in-out;
    margin: 5px;
}

.swiper-full .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #111;
    width: 2rem;
}