<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">section {
    position: relative;
    /* display: flex; */
    align-items: center;
}

.swiper {
    width: 100%;
}

.button button:hover {
    background: #6616d0;
}

.swiper-pagination {
    position: absolute;
}

.swiper-pagination-bullet {
    height: 7px;
    width: 26px;
    border-radius: 25px;
    background: #7d2ae8;
}

.swiper-button-next,
.swiper-button-prev {
    opacity: 0.7;
    color: white;
    transition: all 0.30s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
    color: #7d2ae8;
}

swiper-container {
    width: 100%;
    /* height: 100%; */
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
}

swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

swiper-slide {
    width: 60%;
    max-width: 500px;
}

@media only screen and (max-width: 600px) {
    swiper-slide {
        width: 98%;
    }
}</pre></body></html>